Ignore:
Timestamp:
Apr 11, 2003, 4:22:06 PM (22 years ago)
Author:
sandervl
Message:

KSO: Implemented WM_COPYDATA

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/oslibmsg.h

    r9598 r10012  
    1 /* $Id: oslibmsg.h,v 1.19 2003-01-03 16:35:54 sandervl Exp $ */
     1/* $Id: oslibmsg.h,v 1.20 2003-04-11 14:22:05 sandervl Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    1414
    1515
     16typedef struct tagCOPYDATASTRUCT_W
     17{
     18    DWORD   dwData;
     19    DWORD   cbData;
     20    LPVOID  lpData;
     21} COPYDATASTRUCT_W, *PCOPYDATASTRUCT_W, *LPCOPYDATASTRUCT_W;
     22
     23
    1624#ifdef __cplusplus
    1725
    1826ULONG TranslateWinMsg(ULONG msg);
    1927
    20 #define MSG_NOREMOVE    0
    21 #define MSG_REMOVE      1
     28#define MSG_NOREMOVE    0
     29#define MSG_REMOVE      1
    2230
    2331#ifdef OS2DEF_INCLUDED
     
    2735#endif
    2836
    29 BOOL  OSLibWinGetMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin, 
     37BOOL  OSLibWinGetMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin,
    3038                     UINT uMsgFilterMax, BOOL isUnicode = FALSE);
    31 BOOL  OSLibWinPeekMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin, 
     39BOOL  OSLibWinPeekMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin,
    3240                      UINT uMsgFilterMax, DWORD fRemove, BOOL isUnicode = FALSE);
    3341void  OSLibWinPostQuitMessage(ULONG nExitCode);
Note: See TracChangeset for help on using the changeset viewer.