Changeset 13383


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

Added new logging feature

Location:
tags/trunk/src
Files:
38 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/src/kernel32/lang.cpp

    r13382 r13383  
     1/* $Id: lang.cpp,v 1.17 2000-02-16 14:27:07 sandervl Exp $ */
    12/*
    23 * Win32 language API functions for OS/2
  • TabularUnified tags/trunk/src/kernel32/network.cpp

    r13382 r13383  
     1/* $Id: network.cpp,v 1.9 2000-02-16 14:27:08 sandervl Exp $ */
    12/*
    23 * Win32 Network apis
  • TabularUnified tags/trunk/src/kernel32/npipe.cpp

    r13325 r13383  
    1 /* $Id: npipe.cpp,v 1.6 2000-02-10 22:39:46 bird Exp $ */
     1/* $Id: npipe.cpp,v 1.7 2000-02-16 14:25:43 sandervl Exp $ */
    22/*
    33 * Win32 Named pipes API
     
    1717#include "debugtools.h"
    1818#include "oslibdos.h"
     19
     20#define DBG_LOCALLOG    DBG_npipe
     21#include "dbglocal.h"
    1922
    2023ODINDEBUGCHANNEL(KERNEL32-NPIPE)
  • TabularUnified tags/trunk/src/kernel32/obsolete.cpp

    r10729 r13383  
    1 /* $Id: obsolete.cpp,v 1.2 1999-06-10 19:09:35 phaller Exp $ */
     1/* $Id: obsolete.cpp,v 1.3 2000-02-16 14:25:43 sandervl Exp $ */
    22
    33/*
     
    1212#include <os2win.h>
    1313
     14#define DBG_LOCALLOG    DBG_obsolete
     15#include "dbglocal.h"
     16
    1417//Api's that are obsolete, but some apps might still reference them
    1518//(the Red Alert AUTORUN.EXE does)
  • TabularUnified tags/trunk/src/kernel32/os2heap.cpp

    r12356 r13383  
    1 /* $Id: os2heap.cpp,v 1.13 1999-11-18 09:21:34 bird Exp $ */
     1/* $Id: os2heap.cpp,v 1.14 2000-02-16 14:25:43 sandervl Exp $ */
    22
    33/*
     
    2828#include "initterm.h"
    2929
     30#define DBG_LOCALLOG    DBG_os2heap
     31#include "dbglocal.h"
     32
    3033#ifndef HEAP_NO_SERIALIZE
    3134  #define HEAP_NO_SERIALIZE 1
  • TabularUnified tags/trunk/src/kernel32/oslibdebug.cpp

    r12863 r13383  
    1 /* $Id: oslibdebug.cpp,v 1.1 1999-12-31 10:47:11 sandervl Exp $ */
     1/* $Id: oslibdebug.cpp,v 1.2 2000-02-16 14:25:44 sandervl Exp $ */
    22
    33/*
     
    2727#include "oslibdebug.h"
    2828
     29#define DBG_LOCALLOG    DBG_oslibdebug
     30#include "dbglocal.h"
     31
    2932#define DEBUG_QUEUENAME "\\QUEUES\\ODINTRACE\\"
    3033#define DEBUG_QSEMNAME  "\\SEM32\\ODINTRACEQ\\"
  • TabularUnified tags/trunk/src/kernel32/oslibdos.cpp

    r13267 r13383  
    1 /* $Id: oslibdos.cpp,v 1.18 2000-02-08 22:29:15 sandervl Exp $ */
     1/* $Id: oslibdos.cpp,v 1.19 2000-02-16 14:25:45 sandervl Exp $ */
    22/*
    33 * Wrappers for OS/2 Dos* API
     
    2727#include "dosqss.h"
    2828
     29#define DBG_LOCALLOG    DBG_oslibdos
     30#include "dbglocal.h"
     31
    2932/***********************************
    3033 * PH: fixups for missing os2win.h *
     
    344347}
    345348//******************************************************************************
     349DWORD WIN32API GetEnvironmentVariableA(LPCSTR, LPSTR, DWORD );
    346350//******************************************************************************
    347351DWORD OSLibDosSearchPath(DWORD cmd, char *path, char *name, char *full_name,
     
    377381  case OSLIB_SEARCHENV:
    378382  {
    379    PCSZ envstring;
    380    CHAR szResult[CCHMAXPATH];
    381 
    382         if(DosScanEnv(path, &envstring) != 0) {
     383   LPSTR envstring;
     384   int   envsize;
     385   CHAR  szResult[CCHMAXPATH];
     386
     387        envsize = GetEnvironmentVariableA(path, NULL, 0);
     388        envstring = (LPSTR)malloc(envsize+1);
     389        GetEnvironmentVariableA(path, envstring, envsize);
     390        if(DosSearchPath(SEARCH_IGNORENETERRS, envstring,
     391                         name, szResult, sizeof(szResult)) != 0) {
     392                free(envstring);
    383393                return 0;
    384394        }
    385         if(DosSearchPath(SEARCH_IGNORENETERRS, envstring,
    386                          name, szResult, sizeof(szResult)) != 0) {
    387                 return 0;
    388         }
     395        free(envstring);
    389396        strcpy(full_name, szResult);
    390397        return strlen(full_name);
  • TabularUnified tags/trunk/src/kernel32/oslibexcept.cpp

    r11812 r13383  
    1 /* $Id: oslibexcept.cpp,v 1.1 1999-10-09 15:03:23 sandervl Exp $ */
     1/* $Id: oslibexcept.cpp,v 1.2 2000-02-16 14:25:45 sandervl Exp $ */
    22/*
    33 * Exception handler util. procedures
     
    1919#include <exceptions.h>
    2020
     21#define DBG_LOCALLOG    DBG_oslibexcept
     22#include "dbglocal.h"
     23
    2124//******************************************************************************
    2225//Dispatches OS/2 exception to win32 handler
  • TabularUnified tags/trunk/src/kernel32/oslibmisc.cpp

    r12894 r13383  
    1 /* $Id: oslibmisc.cpp,v 1.5 2000-01-03 21:36:11 sandervl Exp $ */
     1/* $Id: oslibmisc.cpp,v 1.6 2000-02-16 14:25:45 sandervl Exp $ */
    22
    33/*
     
    2424#include <misc.h>
    2525
     26#define DBG_LOCALLOG    DBG_oslibmisc
     27#include "dbglocal.h"
     28
    2629/***********************************
    2730 * PH: fixups for missing os2win.h *
  • TabularUnified tags/trunk/src/kernel32/resource.cpp

    r12912 r13383  
    1 /* $Id: resource.cpp,v 1.14 2000-01-05 19:39:56 sandervl Exp $ */
     1/* $Id: resource.cpp,v 1.15 2000-02-16 14:25:45 sandervl Exp $ */
    22
    33/*
     
    1717#include <winexebase.h>
    1818#include <windllbase.h>
     19
     20#define DBG_LOCALLOG    DBG_resource
     21#include "dbglocal.h"
    1922
    2023//******************************************************************************
  • TabularUnified tags/trunk/src/kernel32/stubs.cpp

    r12884 r13383  
    1 /* $Id: stubs.cpp,v 1.18 2000-01-02 22:51:12 sandervl Exp $ */
     1/* $Id: stubs.cpp,v 1.19 2000-02-16 14:25:45 sandervl Exp $ */
    22
    33/*
     
    2323
    2424#include "stubs.h"
     25
     26#define DBG_LOCALLOG    DBG_stubs
     27#include "dbglocal.h"
    2528
    2629
  • TabularUnified tags/trunk/src/kernel32/unicode.cpp

    r12928 r13383  
    1 /* $Id: unicode.cpp,v 1.21 2000-01-06 20:07:10 sandervl Exp $ */
     1/* $Id: unicode.cpp,v 1.22 2000-02-16 14:25:45 sandervl Exp $ */
    22
    33/*
     
    1919#include "codepage.h"
    2020#include <unicode.h>
     21
     22#define DBG_LOCALLOG    DBG_unicode
     23#include "dbglocal.h"
    2124
    2225/*static UconvObject uconv_object = NULL;*/
  • TabularUnified tags/trunk/src/kernel32/wprocess.cpp

    r13276 r13383  
    1 /* $Id: wprocess.cpp,v 1.67 2000-02-09 13:42:13 sandervl Exp $ */
     1/* $Id: wprocess.cpp,v 1.68 2000-02-16 14:25:46 sandervl Exp $ */
    22
    33/*
     
    4040#include "mmap.h"
    4141
     42#define DBG_LOCALLOG    DBG_wprocess
     43#include "dbglocal.h"
    4244
    4345ODINDEBUGCHANNEL(KERNEL32-WPROCESS)
  • TabularUnified tags/trunk/src/user32/win32class.cpp

    r13252 r13383  
    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
  • TabularUnified tags/trunk/src/user32/win32dlg.cpp

    r13252 r13383  
    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"
  • TabularUnified tags/trunk/src/user32/win32wbase.cpp

    r13375 r13383  
    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)
  • TabularUnified tags/trunk/src/user32/win32wbasenonclient.cpp

    r13319 r13383  
    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}
  • TabularUnified tags/trunk/src/user32/win32wbasepos.cpp

    r13192 r13383  
    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/*******************************************************************
  • TabularUnified tags/trunk/src/user32/win32wdesktop.cpp

    r13319 r13383  
    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;
  • TabularUnified tags/trunk/src/user32/win32wmdichild.cpp

    r13237 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/win32wmdiclient.cpp

    r13052 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/win32wnd.cpp

    r13052 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/win32wndchild.cpp

    r13052 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/win32wndhandle.cpp

    r13052 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/winaccel.cpp

    r13052 r13383  
    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/*****************************************************************************
  • TabularUnified tags/trunk/src/user32/windlg.cpp

    r13248 r13383  
    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 );
  • TabularUnified tags/trunk/src/user32/windlgmsg.cpp

    r13052 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/window.cpp

    r13141 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/windowclass.cpp

    r13052 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/windowmsg.cpp

    r13158 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/windowword.cpp

    r13052 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/wingdi.cpp

    r13052 r13383  
    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
  • TabularUnified tags/trunk/src/user32/winicon.cpp

    r13052 r13383  
    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//******************************************************************************
  • TabularUnified tags/trunk/src/user32/winkeyboard.cpp

    r13052 r13383  
    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] =
  • TabularUnified tags/trunk/src/user32/winmouse.cpp

    r13052 r13383  
    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;
  • TabularUnified tags/trunk/src/user32/winproc.cpp

    r13052 r13383  
    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)
  • TabularUnified tags/trunk/src/user32/winprop.cpp

    r13052 r13383  
    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
  • TabularUnified tags/trunk/src/user32/winswitch.cpp

    r13052 r13383  
    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.