Ignore:
Timestamp:
Dec 4, 2002, 4:21:18 PM (23 years ago)
Author:
sandervl
Message:

update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/winuser32.h

    r7765 r9461  
    7070BOOL WIN32API WinSetVisibleRgnNotifyProc(HWND hwnd, VISRGN_NOTIFY_PROC lpNotifyProc, DWORD dwUserData);
    7171
     72
     73//
     74// PM message definitions for Odin
     75//
     76
     77//PostThreadMessage is done through Open32; which means the message id will be translated
     78//(0xc00 added)
     79#define OPEN32_MSGDIFF            0xC00
     80#define WIN32APP_POSTMSG          (0x1000+OPEN32_MSGDIFF)
     81
     82//PM doesn't allow SetFocus during WM_SETFOCUS message processing; must delay
     83//this by posting a message
     84//NOTE Must be smaller than WIN32APP_POSTMSG!
     85#define WIN32APP_SETFOCUSMSG      (WIN32APP_POSTMSG-1)
     86#define WIN32APP_POSTPONEDESTROY  (WIN32APP_POSTMSG-2)
     87#define WIN32APP_DDRAWFULLSCREEN  (WIN32APP_POSTMSG-3)
     88
     89#define WIN32MSG_MAGICA           0x12345678
     90#define WIN32MSG_MAGICW           0x12345679
     91
     92typedef struct
     93{
     94   ULONG wParam;
     95   ULONG lParam;
     96} POSTMSG_PACKET;
     97
    7298#endif //__WINUSER32_H__
Note: See TracChangeset for help on using the changeset viewer.