Changeset 2803 for trunk/src/user32


Ignore:
Timestamp:
Feb 16, 2000, 3:28:28 PM (26 years ago)
Author:
sandervl
Message:

Added new logging feature

Location:
trunk/src/user32
Files:
25 edited

Legend:

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

    r2672 r2803  
    1 /* $Id: win32class.cpp,v 1.13 2000-02-06 22:00:23 sandervl Exp $ */
     1/* $Id: win32class.cpp,v 1.14 2000-02-16 14:28:22 sandervl Exp $ */
    22/*
    33 * Win32 Window Class Managment Code for OS/2
     
    2525#include <win\winproc.h>
    2626
     27#define DBG_LOCALLOG    DBG_win32class
     28#include "dbglocal.h"
     29
    2730static fDestroyAll = FALSE;
    2831
  • trunk/src/user32/win32dlg.cpp

    r2672 r2803  
    1 /* $Id: win32dlg.cpp,v 1.43 2000-02-06 22:00:23 sandervl Exp $ */
     1/* $Id: win32dlg.cpp,v 1.44 2000-02-16 14:28:22 sandervl Exp $ */
    22/*
    33 * Win32 Dialog Code for OS/2
     
    2424#include "controls.h"
    2525#include "syscolor.h"
     26
     27#define DBG_LOCALLOG    DBG_win32dlg
     28#include "dbglocal.h"
    2629
    2730#define DEFAULT_DLGFONT "9.WarpSans"
  • trunk/src/user32/win32wbase.cpp

    r2795 r2803  
    1 /* $Id: win32wbase.cpp,v 1.162 2000-02-15 14:39:12 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.163 2000-02-16 14:28:22 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    5050#include "timer.h"
    5151
     52#define DBG_LOCALLOG    DBG_win32wbase
     53#include "dbglocal.h"
     54
    5255#define SC_ABOUTWINE            (SC_SCREENSAVE+1)
    5356#define SC_PUTMARK              (SC_SCREENSAVE+2)
  • trunk/src/user32/win32wbasenonclient.cpp

    r2739 r2803  
    1 /* $Id: win32wbasenonclient.cpp,v 1.10 2000-02-10 18:49:52 cbratschi Exp $ */
     1/* $Id: win32wbasenonclient.cpp,v 1.11 2000-02-16 14:28:23 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2 (non-client methods)
     
    3939#include <menu.h>
    4040
     41#define DBG_LOCALLOG    DBG_win32wbasenonclient
     42#include "dbglocal.h"
     43
    4144#define SC_ABOUTODIN            (SC_SCREENSAVE+1)
    4245#define SC_PUTMARK              (SC_SCREENSAVE+2)
     
    957960
    958961  dprintf(("DoNCPaint %x %x %d", getWindowHandle(), clip, suppress_menupaint));
     962  DecreaseLogCount();
    959963
    960964  if (!(hdc = GetDCEx( Win32Hwnd, (clip > 1) ? clip : 0, DCX_USESTYLE | DCX_WINDOW |
     
    10711075
    10721076  ReleaseDC(Win32Hwnd,hdc);
     1077  IncreaseLogCount();
    10731078  dprintf(("**DoNCPaint %x DONE", getWindowHandle()));
    10741079}
  • trunk/src/user32/win32wbasepos.cpp

    r2611 r2803  
    1 /* $Id: win32wbasepos.cpp,v 1.12 2000-02-03 17:13:03 cbratschi Exp $ */
     1/* $Id: win32wbasepos.cpp,v 1.13 2000-02-16 14:28:24 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2 (nonclient/position methods)
     
    3838#include "pmframe.h"
    3939#include "win32wdesktop.h"
     40
     41#define DBG_LOCALLOG    DBG_win32wbasepos
     42#include "dbglocal.h"
    4043
    4144/*******************************************************************
  • trunk/src/user32/win32wdesktop.cpp

    r2739 r2803  
    1 /* $Id: win32wdesktop.cpp,v 1.11 2000-02-10 18:49:53 cbratschi Exp $ */
     1/* $Id: win32wdesktop.cpp,v 1.12 2000-02-16 14:28:24 sandervl Exp $ */
    22/*
    33 * Win32 Desktop Window for OS/2
     
    1616#include "oslibwin.h"
    1717#include "win32wndhandle.h"
     18
     19#define DBG_LOCALLOG    DBG_win32wdesktop
     20#include "dbglocal.h"
    1821
    1922Win32Desktop *windowDesktop = 0;
  • trunk/src/user32/win32wmdichild.cpp

    r2657 r2803  
    1 /* $Id: win32wmdichild.cpp,v 1.21 2000-02-05 14:08:54 sandervl Exp $ */
     1/* $Id: win32wmdichild.cpp,v 1.22 2000-02-16 14:28:24 sandervl Exp $ */
    22/*
    33 * Win32 MDI Child Window Class for OS/2
     
    4141#include "win32wndhandle.h"
    4242
     43#define DBG_LOCALLOG    DBG_win32wmdichild
     44#include "dbglocal.h"
    4345
    4446//******************************************************************************
  • trunk/src/user32/win32wmdiclient.cpp

    r2469 r2803  
    1 /* $Id: win32wmdiclient.cpp,v 1.23 2000-01-18 20:11:00 sandervl Exp $ */
     1/* $Id: win32wmdiclient.cpp,v 1.24 2000-02-16 14:28:24 sandervl Exp $ */
    22/*
    33 * Win32 MDI Client Window Class for OS/2
     
    3636#include "win32wndhandle.h"
    3737
     38#define DBG_LOCALLOG    DBG_win32wmdiclient
     39#include "dbglocal.h"
     40
    3841
    3942//******************************************************************************
  • trunk/src/user32/win32wnd.cpp

    r2469 r2803  
    1 /* $Id: win32wnd.cpp,v 1.7 2000-01-18 20:11:01 sandervl Exp $ */
     1/* $Id: win32wnd.cpp,v 1.8 2000-02-16 14:28:24 sandervl Exp $ */
    22/*
    33 * Win32 Window Class for OS/2
     
    3636#include "win32wmdiclient.h"
    3737
     38#define DBG_LOCALLOG    DBG_win32wnd
     39#include "dbglocal.h"
    3840
    3941//******************************************************************************
  • trunk/src/user32/win32wndchild.cpp

    r2469 r2803  
    1 /* $Id: win32wndchild.cpp,v 1.4 2000-01-18 20:11:01 sandervl Exp $ */
     1/* $Id: win32wndchild.cpp,v 1.5 2000-02-16 14:28:25 sandervl Exp $ */
    22/*
    33 * Win32 Child/Parent window class for OS/2
     
    1313#include <win32wndchild.h>
    1414#include <misc.h>
     15
     16#define DBG_LOCALLOG    DBG_win32wndchild
     17#include "dbglocal.h"
    1518
    1619//******************************************************************************
  • trunk/src/user32/win32wndhandle.cpp

    r2469 r2803  
    1 /* $Id: win32wndhandle.cpp,v 1.4 2000-01-18 20:11:03 sandervl Exp $ */
     1/* $Id: win32wndhandle.cpp,v 1.5 2000-02-16 14:28:25 sandervl Exp $ */
    22/*
    33 * Win32 Handle Management Code for OS/2
     
    1919#include <vmutex.h>
    2020#include "win32wndhandle.h"
     21
     22#define DBG_LOCALLOG    DBG_win32wndhandle
     23#include "dbglocal.h"
    2124
    2225//******************************************************************************
  • trunk/src/user32/winaccel.cpp

    r2469 r2803  
    1 /* $Id: winaccel.cpp,v 1.5 2000-01-18 20:11:04 sandervl Exp $ */
     1/* $Id: winaccel.cpp,v 1.6 2000-02-16 14:28:25 sandervl Exp $ */
    22/*
    33 * Win32 accelerator key functions for OS/2
     
    1313#include <win32wbase.h>
    1414#include <winaccel.h>
     15
     16#define DBG_LOCALLOG    DBG_winaccel
     17#include "dbglocal.h"
    1518
    1619/*****************************************************************************
  • trunk/src/user32/windlg.cpp

    r2668 r2803  
    1 /* $Id: windlg.cpp,v 1.15 2000-02-06 17:39:35 cbratschi Exp $ */
     1/* $Id: windlg.cpp,v 1.16 2000-02-16 14:28:25 sandervl Exp $ */
    22/*
    33 * Win32 dialog apis for OS/2
     
    2626#include <win\drive.h>
    2727
     28#define DBG_LOCALLOG    DBG_windlg
     29#include "dbglocal.h"
     30
    2831static INT  DIALOG_DlgDirListW( HWND hDlg, LPWSTR spec, INT idLBox, INT idStatic, UINT attrib, BOOL combo );
    2932static INT  DIALOG_DlgDirList( HWND hDlg, LPSTR spec, INT idLBox, INT idStatic, UINT attrib, BOOL combo );
  • trunk/src/user32/windlgmsg.cpp

    r2469 r2803  
    1 /* $Id: windlgmsg.cpp,v 1.5 2000-01-18 20:11:07 sandervl Exp $ */
     1/* $Id: windlgmsg.cpp,v 1.6 2000-02-16 14:28:25 sandervl Exp $ */
    22/*
    33 * Win32 dialog message APIs for OS/2
     
    2020#include "win32wbase.h"
    2121#include "win32dlg.h"
     22
     23#define DBG_LOCALLOG    DBG_windlgmsg
     24#include "dbglocal.h"
    2225
    2326//******************************************************************************
  • trunk/src/user32/window.cpp

    r2560 r2803  
    1 /* $Id: window.cpp,v 1.54 2000-01-29 14:23:33 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.55 2000-02-16 14:28:26 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    3131#include "winicon.h"
    3232#include <win\winpos.h>
     33
     34#define DBG_LOCALLOG    DBG_window
     35#include "dbglocal.h"
    3336
    3437//******************************************************************************
  • trunk/src/user32/windowclass.cpp

    r2469 r2803  
    1 /* $Id: windowclass.cpp,v 1.8 2000-01-18 20:11:09 sandervl Exp $ */
     1/* $Id: windowclass.cpp,v 1.9 2000-02-16 14:28:26 sandervl Exp $ */
    22/*
    33 * Win32 Window Class Code for OS/2
     
    2020#include <win32wbase.h>
    2121#include <controls.h>
     22
     23#define DBG_LOCALLOG    DBG_windowclass
     24#include "dbglocal.h"
    2225
    2326//******************************************************************************
  • trunk/src/user32/windowmsg.cpp

    r2577 r2803  
    1 /* $Id: windowmsg.cpp,v 1.18 2000-01-30 18:48:29 sandervl Exp $ */
     1/* $Id: windowmsg.cpp,v 1.19 2000-02-16 14:28:26 sandervl Exp $ */
    22/*
    33 * Win32 window message APIs for OS/2
     
    2424#include "oslibwin.h"
    2525#include "oslibmsg.h"
     26
     27#define DBG_LOCALLOG    DBG_windowmsg
     28#include "dbglocal.h"
    2629
    2730//******************************************************************************
  • trunk/src/user32/windowword.cpp

    r2469 r2803  
    1 /* $Id: windowword.cpp,v 1.7 2000-01-18 20:11:12 sandervl Exp $ */
     1/* $Id: windowword.cpp,v 1.8 2000-02-16 14:28:27 sandervl Exp $ */
    22
    33/*
     
    1414
    1515#include <win32wbase.h>
     16
     17#define DBG_LOCALLOG    DBG_windowword
     18#include "dbglocal.h"
    1619
    1720//******************************************************************************
  • trunk/src/user32/wingdi.cpp

    r2469 r2803  
    1 /* $Id: wingdi.cpp,v 1.5 2000-01-18 20:11:12 sandervl Exp $ */
     1/* $Id: wingdi.cpp,v 1.6 2000-02-16 14:28:27 sandervl Exp $ */
    22/*
    33 * Win32 Window graphics apis for OS/2
     
    1717#include <oslibwin.h>
    1818#include <oslibgdi.h>
     19
     20#define DBG_LOCALLOG    DBG_wingdi
     21#include "dbglocal.h"
    1922
    2023#define OPEN32_GDI
  • trunk/src/user32/winicon.cpp

    r2469 r2803  
    1 /* $Id: winicon.cpp,v 1.8 2000-01-18 20:11:15 sandervl Exp $ */
     1/* $Id: winicon.cpp,v 1.9 2000-02-16 14:28:27 sandervl Exp $ */
    22/*
    33 * Win32 Icon Code for OS/2
     
    2121#include <winicon.h>
    2222#include <win\cursoricon.h>
     23
     24#define DBG_LOCALLOG    DBG_winicon
     25#include "dbglocal.h"
    2326
    2427//******************************************************************************
  • trunk/src/user32/winkeyboard.cpp

    r2469 r2803  
    1 /* $Id: winkeyboard.cpp,v 1.4 2000-01-18 20:11:16 sandervl Exp $ */
     1/* $Id: winkeyboard.cpp,v 1.5 2000-02-16 14:28:27 sandervl Exp $ */
    22/*
    33 * Win32 <-> PM key translation
     
    1414#include "oslibwin.h"
    1515#include <heapstring.h>
     16
     17#define DBG_LOCALLOG    DBG_winkeyboard
     18#include "dbglocal.h"
    1619
    1720BYTE abPMScanToWinVKey[256] =
  • trunk/src/user32/winmouse.cpp

    r2469 r2803  
    1 /* $Id: winmouse.cpp,v 1.4 2000-01-18 20:11:19 sandervl Exp $ */
     1/* $Id: winmouse.cpp,v 1.5 2000-02-16 14:28:28 sandervl Exp $ */
    22/*
    33 * Mouse handler for DINPUT
     
    1515#include "oslibmsg.h"
    1616#include "pmwindow.h"
     17
     18#define DBG_LOCALLOG    DBG_winmouse
     19#include "dbglocal.h"
    1720
    1821LPMOUSE_EVENT_PROC mouseHandler = NULL;
  • trunk/src/user32/winproc.cpp

    r2469 r2803  
    1 /* $Id: winproc.cpp,v 1.3 2000-01-18 20:11:21 sandervl Exp $ */
     1/* $Id: winproc.cpp,v 1.4 2000-02-16 14:28:28 sandervl Exp $ */
    22/*
    33 * Window procedure callbacks
     
    2121#include <heapcode.h>
    2222#include "win32wbase.h"
     23
     24#define DBG_LOCALLOG    DBG_winproc
     25#include "dbglocal.h"
    2326
    2427DECLARE_DEBUG_CHANNEL(relay)
  • trunk/src/user32/winprop.cpp

    r2469 r2803  
    1 /* $Id: winprop.cpp,v 1.6 2000-01-18 20:11:22 sandervl Exp $ */
     1/* $Id: winprop.cpp,v 1.7 2000-02-16 14:28:28 sandervl Exp $ */
    22/*
    33 * Win32 Property apis for OS/2
     
    1313#include <misc.h>
    1414#include "win32wbase.h"
     15
     16#define DBG_LOCALLOG    DBG_winprop
     17#include "dbglocal.h"
    1518
    1619#undef DEBUG
  • trunk/src/user32/winswitch.cpp

    r2469 r2803  
    1 /* $Id: winswitch.cpp,v 1.3 2000-01-18 20:11:24 sandervl Exp $ */
     1/* $Id: winswitch.cpp,v 1.4 2000-02-16 14:28:28 sandervl Exp $ */
    22/*
    33 * WinSwitch control
     
    1414#include "controls.h"
    1515#include "winswitch.h"
     16
     17#define DBG_LOCALLOG    DBG_winswitch
     18#include "dbglocal.h"
    1619
    1720LRESULT WINAPI WinSwitchWndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam)
Note: See TracChangeset for help on using the changeset viewer.