Changeset 392 for trunk/src/user32/new/win32wnd.h
- Timestamp:
- Jul 25, 1999, 5:51:57 PM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/new/win32wnd.h (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wnd.h
r391 r392 1 /* $Id: win32wnd.h,v 1.1 8 1999-07-25 09:19:22sandervl Exp $ */1 /* $Id: win32wnd.h,v 1.19 1999-07-25 15:51:56 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Code for OS/2 … … 43 43 #define WM_WIN32_POSTMESSAGEA 0x4000 44 44 #define WM_WIN32_POSTMESSAGEW 0x4001 45 46 #define MAX_WINDOW_NAMELENGTH 256 45 47 46 48 class Win32Window : private GenericObject, private ChildWindow … … 73 75 ULONG MsgEraseBackGround(ULONG hps); 74 76 ULONG MsgSetText(LPSTR lpsz, LONG cch); 77 ULONG MsgGetTextLength(); 78 char *MsgGetText(); 75 79 76 80 virtual LONG SetWindowLongA(int index, ULONG value); … … 134 138 BOOL PostMessageA(ULONG msg, WPARAM wParam, LPARAM lParam); 135 139 BOOL PostMessageW(ULONG msg, WPARAM wParam, LPARAM lParam); 136 LRESULT DefWindowProcA( HWND hwnd,UINT msg, WPARAM wParam, LPARAM lParam);137 LRESULT DefWindowProcW( HWND hwnd,UINT msg, WPARAM wParam, LPARAM lParam);140 LRESULT DefWindowProcA(UINT msg, WPARAM wParam, LPARAM lParam); 141 LRESULT DefWindowProcW(UINT msg, WPARAM wParam, LPARAM lParam); 138 142 139 143 void NotifyParent(UINT Msg, WPARAM wParam, LPARAM lParam); … … 192 196 193 197 BOOL isIcon; 198 BOOL fCreated; 194 199 195 200 Win32Window *owner; … … 199 204 Win32Resource *iconResource; 200 205 201 char *windowName; 206 char windowNameA[MAX_WINDOW_NAMELENGTH]; 207 WCHAR windowNameW[MAX_WINDOW_NAMELENGTH]; 202 208 ULONG wndNameLength; 203 209 204 char *windowText;205 ULONG wndTextLength;206 207 210 ULONG *userWindowLong; 208 211 ULONG nrUserWindowLong; … … 277 280 #define KEY_PREVDOWN 2 278 281 #define KEY_UP 4 282 #define KEY_DEADKEY 8 279 283 280 284 #endif //__cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.
