Changeset 2250 for trunk/src/user32/windowmsg.cpp
- Timestamp:
- Dec 29, 1999, 3:37:19 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/windowmsg.cpp
r2246 r2250 1 /* $Id: windowmsg.cpp,v 1.1 4 1999-12-29 12:39:45sandervl Exp $ */1 /* $Id: windowmsg.cpp,v 1.15 1999-12-29 14:37:19 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message APIs for OS/2 … … 175 175 } 176 176 dprintf(("PostMessageA, %x %x %x %x", hwnd, msg, wParam, lParam)); 177 return window->PostMessageA(msg, wParam, lParam);177 return OSLibPostMessage(window->getOS2WindowHandle(), msg, wParam, lParam, FALSE); 178 178 } 179 179 //****************************************************************************** … … 198 198 } 199 199 dprintf(("PostMessageW, %x %x %x %x", hwnd, msg, wParam, lParam)); 200 return window->PostMessageW(msg, wParam, lParam); 200 return OSLibPostMessage(window->getOS2WindowHandle(), msg, wParam, lParam, TRUE); 201 } 202 //****************************************************************************** 203 //****************************************************************************** 204 BOOL WIN32API PostThreadMessageA( DWORD threadid, UINT msg, WPARAM wParam, LPARAM lParam) 205 { 206 return OSLibPostThreadMessage(threadid, msg, wParam, lParam, FALSE); 207 } 208 //****************************************************************************** 209 //****************************************************************************** 210 BOOL WIN32API PostThreadMessageW( DWORD threadid, UINT msg, WPARAM wParam, LPARAM lParam) 211 { 212 return OSLibPostThreadMessage(threadid, msg, wParam, lParam, TRUE); 201 213 } 202 214 //****************************************************************************** … … 221 233 dprintf(("USER32: ReplyMessage %x", result)); 222 234 return OSLibWinReplyMessage(result); 223 }224 //******************************************************************************225 //******************************************************************************226 BOOL WIN32API PostThreadMessageA( DWORD threadid, UINT msg, WPARAM wParam, LPARAM lParam)227 {228 return Win32BaseWindow::PostThreadMessageA(threadid, msg, wParam, lParam);229 }230 //******************************************************************************231 //******************************************************************************232 BOOL WIN32API PostThreadMessageW( DWORD threadid, UINT msg, WPARAM wParam, LPARAM lParam)233 {234 return Win32BaseWindow::PostThreadMessageW(threadid, msg, wParam, lParam);235 235 } 236 236 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.