Changeset 3209 for trunk/src/user32/windowmsg.cpp
- Timestamp:
- Mar 24, 2000, 12:06:54 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/windowmsg.cpp
r2803 r3209 1 /* $Id: windowmsg.cpp,v 1. 19 2000-02-16 14:28:26sandervl Exp $ */1 /* $Id: windowmsg.cpp,v 1.20 2000-03-23 23:06:53 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message APIs for OS/2 … … 245 245 246 246 rc = O32_RegisterWindowMessage(arg1); 247 #ifdef DEBUG 248 WriteLog("USER32: RegisterWindowMessageA %s returned %X\n", arg1, rc); 249 #endif 247 dprintf(("USER32: RegisterWindowMessageA %s returned %X\n", arg1, rc)); 250 248 return(rc); 251 249 } … … 257 255 UINT rc; 258 256 259 #ifdef DEBUG 260 WriteLog("USER32: RegisterWindowMessageW\n"); 261 #endif 257 dprintf(("USER32: RegisterWindowMessageW\n")); 262 258 rc = O32_RegisterWindowMessage(astring); 263 259 FreeAsciiString(astring); … … 269 265 BOOL WIN32API SetMessageQueue(int cMessagesMax) 270 266 { 271 #ifdef DEBUG 272 WriteLog("USER32: SetMessageQueue\n"); 273 #endif 267 dprintf(("USER32: SetMessageQueue\n")); 274 268 return(TRUE); 275 269 } … … 280 274 LPDWORD lpdwResult) 281 275 { 282 #ifdef DEBUG 283 WriteLog("USER32: SendMessageTimeoutA, partially implemented\n"); 284 #endif 276 dprintf(("USER32: SendMessageTimeoutA, partially implemented\n")); 285 277 //ignore fuFlags & wTimeOut 286 278 *lpdwResult = SendMessageA(hwnd, Msg, wParam, lParam); … … 293 285 LPDWORD lpdwResult) 294 286 { 295 #ifdef DEBUG 296 WriteLog("USER32: SendMessageTimeoutW, partially implemented\n"); 297 #endif 287 dprintf(("USER32: SendMessageTimeoutW, partially implemented\n")); 298 288 return(SendMessageTimeoutA(hwnd, Msg, wParam, lParam, fuFlags, uTimeOut, lpdwResult)); 299 289 } … … 302 292 BOOL WIN32API SendNotifyMessageA(HWND hwnd, UINT Msg, WPARAM wParam, LPARAM lParam) 303 293 { 304 #ifdef DEBUG 305 WriteLog("USER32: SendNotifyMessageA, not completely implemented\n"); 306 #endif 294 dprintf(("USER32: SendNotifyMessageA, not completely implemented\n")); 307 295 return(SendMessageA(hwnd, Msg, wParam, lParam)); 308 296 } … … 311 299 BOOL WIN32API SendNotifyMessageW(HWND hwnd, UINT Msg, WPARAM wParam, LPARAM lParam) 312 300 { 313 #ifdef DEBUG 314 WriteLog("USER32: SendNotifyMessageW, not completely implemented\n"); 315 #endif 301 dprintf(("USER32: SendNotifyMessageW, not completely implemented\n")); 316 302 return(SendMessageA(hwnd, Msg, wParam, lParam)); 317 303 } … … 320 306 LPARAM WIN32API SetMessageExtraInfo(LPARAM lParam) 321 307 { 322 #ifdef DEBUG 323 WriteLog("USER32: SetMessageExtraInfo\n"); 324 #endif 308 dprintf(("USER32: SetMessageExtraInfo\n")); 325 309 return SetThreadMessageExtraInfo(lParam); 326 310 }
Note:
See TracChangeset
for help on using the changeset viewer.