Changeset 345 for trunk/src/user32/new/win32wnd.h
- Timestamp:
- Jul 20, 1999, 5:46:54 PM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/new/win32wnd.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wnd.h
r342 r345 1 /* $Id: win32wnd.h,v 1.1 6 1999-07-20 07:42:36sandervl Exp $ */1 /* $Id: win32wnd.h,v 1.17 1999-07-20 15:46:54 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Code for OS/2 … … 93 93 void setFlags(DWORD newflags) { flags = newflags; }; 94 94 95 ULONG GetAccelTable() { return (ULONG) acceltableResource; };95 HACCEL GetAccelTable() { return (HACCEL) acceltableResource; }; 96 96 BOOL SetAccelTable(ULONG hAccel); 97 97 98 ULONG GetMenu() { return (ULONG) menuResource; };98 HMENU GetMenu() { return (HMENU) menuResource; }; 99 99 BOOL SetMenu(ULONG hMenu); 100 101 BOOL SetIcon(HICON hIcon); 102 HICON GetIcon() { return (HICON) iconResource; }; 100 103 101 104 BOOL ShowWindow(ULONG nCmdShow); … … 191 194 Win32Resource *acceltableResource; 192 195 Win32Resource *menuResource; 196 Win32Resource *iconResource; 193 197 194 198 char *windowName;
Note:
See TracChangeset
for help on using the changeset viewer.
