Ignore:
Timestamp:
Mar 24, 2000, 12:06:54 AM (25 years ago)
Author:
sandervl
Message:

replaced writelog calls

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:26 sandervl Exp $ */
     1/* $Id: windowmsg.cpp,v 1.20 2000-03-23 23:06:53 sandervl Exp $ */
    22/*
    33 * Win32 window message APIs for OS/2
     
    245245
    246246    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));
    250248    return(rc);
    251249}
     
    257255 UINT  rc;
    258256
    259 #ifdef DEBUG
    260     WriteLog("USER32:  RegisterWindowMessageW\n");
    261 #endif
     257    dprintf(("USER32:  RegisterWindowMessageW\n"));
    262258    rc = O32_RegisterWindowMessage(astring);
    263259    FreeAsciiString(astring);
     
    269265BOOL WIN32API SetMessageQueue(int cMessagesMax)
    270266{
    271 #ifdef DEBUG
    272   WriteLog("USER32:  SetMessageQueue\n");
    273 #endif
     267  dprintf(("USER32:  SetMessageQueue\n"));
    274268  return(TRUE);
    275269}
     
    280274                    LPDWORD lpdwResult)
    281275{
    282 #ifdef DEBUG
    283   WriteLog("USER32:  SendMessageTimeoutA, partially implemented\n");
    284 #endif
     276  dprintf(("USER32:  SendMessageTimeoutA, partially implemented\n"));
    285277  //ignore fuFlags & wTimeOut
    286278  *lpdwResult = SendMessageA(hwnd, Msg, wParam, lParam);
     
    293285                    LPDWORD lpdwResult)
    294286{
    295 #ifdef DEBUG
    296   WriteLog("USER32:  SendMessageTimeoutW, partially implemented\n");
    297 #endif
     287  dprintf(("USER32:  SendMessageTimeoutW, partially implemented\n"));
    298288  return(SendMessageTimeoutA(hwnd, Msg, wParam, lParam, fuFlags, uTimeOut, lpdwResult));
    299289}
     
    302292BOOL WIN32API SendNotifyMessageA(HWND hwnd, UINT Msg, WPARAM wParam, LPARAM lParam)
    303293{
    304 #ifdef DEBUG
    305   WriteLog("USER32:  SendNotifyMessageA, not completely implemented\n");
    306 #endif
     294  dprintf(("USER32:  SendNotifyMessageA, not completely implemented\n"));
    307295  return(SendMessageA(hwnd, Msg, wParam, lParam));
    308296}
     
    311299BOOL WIN32API SendNotifyMessageW(HWND hwnd, UINT Msg, WPARAM wParam, LPARAM lParam)
    312300{
    313 #ifdef DEBUG
    314   WriteLog("USER32:  SendNotifyMessageW, not completely implemented\n");
    315 #endif
     301  dprintf(("USER32:  SendNotifyMessageW, not completely implemented\n"));
    316302  return(SendMessageA(hwnd, Msg, wParam, lParam));
    317303}
     
    320306LPARAM WIN32API SetMessageExtraInfo(LPARAM lParam)
    321307{
    322 #ifdef DEBUG
    323   WriteLog("USER32:  SetMessageExtraInfo\n");
    324 #endif
     308  dprintf(("USER32:  SetMessageExtraInfo\n"));
    325309  return SetThreadMessageExtraInfo(lParam);
    326310}
Note: See TracChangeset for help on using the changeset viewer.