Ignore:
Timestamp:
Feb 6, 2002, 5:31:49 PM (24 years ago)
Author:
sandervl
Message:

minor logging updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/message.cpp

    r7801 r7808  
    1 /* $Id: message.cpp,v 1.1 2002-02-05 17:58:59 sandervl Exp $ */
     1/* $Id: message.cpp,v 1.2 2002-02-06 16:31:48 sandervl Exp $ */
    22/*
    33 * Win32 window message APIs for OS/2
     
    2929#include "oslibmsg.h"
    3030#include "hook.h"
     31#include "wndmsg.h"
    3132
    3233#define DBG_LOCALLOG    DBG_message
     
    263264{
    264265    LRESULT res = 0;
     266    DebugPrintMessage(hwnd, msg, wParam, lParam, FALSE, FALSE);
    265267    SendMessageTimeoutA(hwnd, msg, wParam, lParam, SMTO_NORMAL, INFINITE, (LPDWORD)&res);
    266268    return res;
     
    271273{
    272274    LRESULT res = 0;
     275    DebugPrintMessage(hwnd, msg, wParam, lParam, TRUE, FALSE);
    273276    SendMessageTimeoutW(hwnd, msg, wParam, lParam, SMTO_NORMAL, INFINITE, (LPDWORD)&res);
    274277    return res;
     
    314317    hwndOS2 = window->getOS2WindowHandle();
    315318    RELEASE_WNDOBJ(window);
    316     dprintf(("PostMessageA, %x %x %x %x", hwnd, msg, wParam, lParam));
     319    DebugPrintMessage(hwnd, msg, wParam, lParam, FALSE, TRUE);
    317320    return OSLibPostMessage(hwndOS2, msg, wParam, lParam, FALSE);
    318321}
     
    349352    hwndOS2 = window->getOS2WindowHandle();
    350353    RELEASE_WNDOBJ(window);
    351     dprintf(("PostMessageW, %x %x %x %x", hwnd, msg, wParam, lParam));
     354    DebugPrintMessage(hwnd, msg, wParam, lParam, TRUE, TRUE);
    352355    return OSLibPostMessage(hwndOS2, msg, wParam, lParam, TRUE);
    353356}
Note: See TracChangeset for help on using the changeset viewer.