Changeset 2084 for trunk/src/user32/win32wbase.h
- Timestamp:
- Dec 16, 1999, 1:11:49 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r2076 r2084 1 /* $Id: win32wbase.h,v 1.5 3 1999-12-14 19:13:20sandervl Exp $ */1 /* $Id: win32wbase.h,v 1.54 1999-12-16 00:11:47 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 40 40 41 41 #define WIN32APP_USERMSGBASE 0x1000 42 #define WIN32APP_POSTMSG 0x 666642 #define WIN32APP_POSTMSG 0x1000 43 43 44 44 typedef struct … … 49 49 ULONG fUnicode; 50 50 } POSTMSG_PACKET; 51 52 #define WM_WIN32_POSTMESSAGEA 0x400053 #define WM_WIN32_POSTMESSAGEW 0x400154 51 55 52 #define BROADCAST_SEND 0 … … 213 210 LRESULT SendMessageA(ULONG msg, WPARAM wParam, LPARAM lParam); 214 211 LRESULT SendMessageW(ULONG msg, WPARAM wParam, LPARAM lParam); 215 LRESULT SendMessageToProcess(UINT msg, WPARAM wParam, LPARAM lParam, BOOL fUnicode);216 212 BOOL PostMessageA(ULONG msg, WPARAM wParam, LPARAM lParam); 217 213 BOOL PostMessageW(ULONG msg, WPARAM wParam, LPARAM lParam); 218 voidPostMessage(POSTMSG_PACKET *packet);214 ULONG PostMessage(POSTMSG_PACKET *packet); 219 215 static BOOL PostThreadMessageA(ULONG threadid, UINT msg, WPARAM wParam, LPARAM lParam); 220 216 static BOOL PostThreadMessageW(ULONG threadid, UINT msg, WPARAM wParam, LPARAM lParam); 221 217 static LRESULT BroadcastMessageA(int type, UINT msg, WPARAM wParam, LPARAM lParam); 222 218 static LRESULT BroadcastMessageW(int type, UINT msg, WPARAM wParam, LPARAM lParam); 219 void CallWindowHookProc(ULONG hooktype, ULONG Msg, WPARAM wParam, LPARAM lParam, BOOL fUnicode = FALSE); 223 220 224 221 LRESULT DefWindowProcA(UINT Msg, WPARAM wParam, LPARAM lParam); … … 306 303 BOOL fNoSizeMsg; 307 304 BOOL fIsDestroyed; 305 BOOL fDestroyWindowCalled; //DestroyWindow was called for this window 308 306 BOOL fCreated; 309 307 BOOL fTaskList; //should be listed in PM tasklist or not 310 308 BOOL fParentDC; 311 309 310 DWORD dwThreadId; //id of thread that created this window 311 DWORD dwProcessId; //id of process that created this window 312 312 PVOID pOldFrameProc; 313 313 ULONG borderWidth;
Note:
See TracChangeset
for help on using the changeset viewer.