Changeset 1831 for trunk/src/user32/win32wbase.h
- Timestamp:
- Nov 24, 1999, 8:32:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r1801 r1831 1 /* $Id: win32wbase.h,v 1.4 4 1999-11-21 17:07:52 cbratschiExp $ */1 /* $Id: win32wbase.h,v 1.45 1999-11-24 19:32:23 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 33 33 #define CheckMagicDword(a) (a==WIN32PM_MAGIC) 34 34 35 #define WIN32APP_USERMSGBASE 0x100036 37 35 typedef struct { 38 36 USHORT cb; … … 41 39 } CUSTOMWNDDATA; 42 40 41 #define WIN32APP_USERMSGBASE 0x1000 42 #define WIN32APP_POSTMSG 0x6666 43 43 44 typedef struct 44 45 { … … 46 47 ULONG wParam; 47 48 ULONG lParam; 49 ULONG fUnicode; 48 50 } POSTMSG_PACKET; 49 51 50 52 #define WM_WIN32_POSTMESSAGEA 0x4000 51 53 #define WM_WIN32_POSTMESSAGEW 0x4001 54 55 #define BROADCAST_SEND 0 56 #define BROADCAST_POST 1 52 57 53 58 class Win32BaseWindow : public GenericObject, public ChildWindow … … 204 209 BOOL PostMessageA(ULONG msg, WPARAM wParam, LPARAM lParam); 205 210 BOOL PostMessageW(ULONG msg, WPARAM wParam, LPARAM lParam); 211 void PostMessage(POSTMSG_PACKET *packet); 212 static BOOL PostThreadMessageA(ULONG threadid, UINT msg, WPARAM wParam, LPARAM lParam); 213 static BOOL PostThreadMessageW(ULONG threadid, UINT msg, WPARAM wParam, LPARAM lParam); 214 static LRESULT BroadcastMessageA(int type, UINT msg, WPARAM wParam, LPARAM lParam); 215 static LRESULT BroadcastMessageW(int type, UINT msg, WPARAM wParam, LPARAM lParam); 216 206 217 LRESULT DefWindowProcA(UINT msg, WPARAM wParam, LPARAM lParam); 207 218 LRESULT DefWindowProcW(UINT msg, WPARAM wParam, LPARAM lParam);
Note:
See TracChangeset
for help on using the changeset viewer.