Ignore:
Timestamp:
Oct 23, 1999, 12:21:45 PM (26 years ago)
Author:
sandervl
Message:

Put back pos change messages in pmwindow.cpp, changed message logging

File:
1 edited

Legend:

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

    r1405 r1408  
    1 /* $Id: win32wbase.cpp,v 1.59 1999-10-22 18:11:48 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.60 1999-10-23 10:21:44 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    2525#include <win32wbase.h>
    2626#include <winres.h>
    27 #include <spy.h>
    2827#include "wndmsg.h"
    2928#include "hooks.h"
     
    16181617  }
    16191618
    1620   if(Msg != WM_GETDLGCODE && Msg != WM_ENTERIDLE) {//sent *very* often
    1621         if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE)
    1622             dprintf(("SendMessageA %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam));
    1623   }
     1619  DebugPrintMessage(getWindowHandle(), Msg, wParam, lParam, FALSE, FALSE);
    16241620
    16251621  if(HkCBT::OS2HkCBTProc(getWindowHandle(), Msg, wParam, lParam) == TRUE) {//hook swallowed msg
     
    16791675  }
    16801676
    1681   if(Msg != WM_GETDLGCODE && Msg != WM_ENTERIDLE) {//sent *very* often
    1682         if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE)
    1683             dprintf(("SendMessageW %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam));
    1684   }
     1677  DebugPrintMessage(getWindowHandle(), Msg, wParam, lParam, TRUE, FALSE);
    16851678
    16861679  if(HkCBT::OS2HkCBTProc(getWindowHandle(), Msg, wParam, lParam) == TRUE) {//hook swallowed msg
     
    17331726 BOOL    fInternalMsgBackup = fInternalMsg;
    17341727
    1735   if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE)
    1736         dprintf(("SendInternalMessageA %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam));
     1728  DebugPrintMessage(getWindowHandle(), Msg, wParam, lParam, FALSE, TRUE);
    17371729
    17381730  if(HkCBT::OS2HkCBTProc(getWindowHandle(), Msg, wParam, lParam) == TRUE) {//hook swallowed msg
     
    17801772 BOOL    fInternalMsgBackup = fInternalMsg;
    17811773
    1782   if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE)
    1783         dprintf(("SendInternalMessageW %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam));
     1774  DebugPrintMessage(getWindowHandle(), Msg, wParam, lParam, TRUE, TRUE);
    17841775
    17851776  if(HkCBT::OS2HkCBTProc(getWindowHandle(), Msg, wParam, lParam) == TRUE) {//hook swallowed msg
Note: See TracChangeset for help on using the changeset viewer.