Changeset 2489 for trunk/src/user32/win32wbase.h
- Timestamp:
- Jan 21, 2000, 2:30:35 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r2469 r2489 1 /* $Id: win32wbase.h,v 1.7 2 2000-01-18 20:08:17sandervl Exp $ */1 /* $Id: win32wbase.h,v 1.73 2000-01-21 13:30:35 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 157 157 WNDPROC getWindowProc() { return win32wndproc; }; 158 158 void setWindowProc(WNDPROC newproc) { win32wndproc = newproc; }; 159 DWORD getWindowId() { return windowId; };159 DWORD getWindowId() { return dwIDMenu; }; 160 160 void setWindowId(DWORD id); 161 161 ULONG getWindowHeight() { return rectWindow.bottom - rectWindow.top; }; … … 188 188 void setFlags(DWORD newflags) { flags = newflags; }; 189 189 190 HMENU GetMenu() { return hMenu; };191 VOID SetMenu(HMENU newMenu) { hMenu = newMenu; };190 HMENU GetMenu() { return dwIDMenu; }; 191 VOID SetMenu(HMENU newMenu) { dwIDMenu = newMenu; }; 192 192 void SetSysMenu(HMENU hSystemMenu) { hSysMenu = hSystemMenu; }; 193 193 HMENU GetSysMenu() { return hSysMenu; } … … 306 306 HWND OS2Hwnd; 307 307 HWND OS2HwndFrame; 308 HMENU hMenu;309 308 HMENU hSysMenu; 310 309 HWND Win32Hwnd; … … 320 319 //Moved in ChildWindow class 321 320 ///// Win32BaseWindow *parent; //GWL_HWNDPARENT 322 ULONG windowId; //GWL_ID321 ULONG dwIDMenu; //GWL_ID 323 322 ULONG userData; //GWL_USERDATA 324 323
Note:
See TracChangeset
for help on using the changeset viewer.