Changeset 2246 for trunk/src/user32/oslibwin.cpp
- Timestamp:
- Dec 29, 1999, 1:39:45 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r2221 r2246 1 /* $Id: oslibwin.cpp,v 1.5 4 1999-12-27 22:53:53 cbratschiExp $ */1 /* $Id: oslibwin.cpp,v 1.55 1999-12-29 12:39:44 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 248 248 249 249 return WinQueryWindowULong(hwnd, offset); 250 }251 //******************************************************************************252 //******************************************************************************253 BOOL OSLibPostMessage(HWND hwnd, ULONG msg, ULONG wParam, ULONG lParam)254 {255 return WinPostMsg(hwnd, msg, (MPARAM)wParam, (MPARAM)lParam);256 }257 //******************************************************************************258 //******************************************************************************259 ULONG OSLibSendMessage(HWND hwnd, ULONG msg, ULONG wParam, ULONG lParam)260 {261 return (ULONG)WinSendMsg(hwnd, msg, (MPARAM)wParam, (MPARAM)lParam);262 }263 //******************************************************************************264 //******************************************************************************265 ULONG OSLibWinBroadcastMsg(ULONG msg, ULONG wParam, ULONG lParam, BOOL fSend)266 {267 return WinBroadcastMsg(HWND_DESKTOP, msg, (MPARAM)wParam, (MPARAM)lParam,268 (fSend) ? BMSG_SEND : BMSG_POST);269 250 } 270 251 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.