Changeset 13383
- Timestamp:
- Feb 16, 2000, 3:28:28 PM (25 years ago)
- 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 $ */ 1 2 /* 2 3 * 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 $ */ 1 2 /* 2 3 * 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 birdExp $ */1 /* $Id: npipe.cpp,v 1.7 2000-02-16 14:25:43 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Named pipes API … … 17 17 #include "debugtools.h" 18 18 #include "oslibdos.h" 19 20 #define DBG_LOCALLOG DBG_npipe 21 #include "dbglocal.h" 19 22 20 23 ODINDEBUGCHANNEL(KERNEL32-NPIPE) -
TabularUnified tags/trunk/src/kernel32/obsolete.cpp ¶
r10729 r13383 1 /* $Id: obsolete.cpp,v 1. 2 1999-06-10 19:09:35 phallerExp $ */1 /* $Id: obsolete.cpp,v 1.3 2000-02-16 14:25:43 sandervl Exp $ */ 2 2 3 3 /* … … 12 12 #include <os2win.h> 13 13 14 #define DBG_LOCALLOG DBG_obsolete 15 #include "dbglocal.h" 16 14 17 //Api's that are obsolete, but some apps might still reference them 15 18 //(the Red Alert AUTORUN.EXE does) -
TabularUnified tags/trunk/src/kernel32/os2heap.cpp ¶
r12356 r13383 1 /* $Id: os2heap.cpp,v 1.1 3 1999-11-18 09:21:34 birdExp $ */1 /* $Id: os2heap.cpp,v 1.14 2000-02-16 14:25:43 sandervl Exp $ */ 2 2 3 3 /* … … 28 28 #include "initterm.h" 29 29 30 #define DBG_LOCALLOG DBG_os2heap 31 #include "dbglocal.h" 32 30 33 #ifndef HEAP_NO_SERIALIZE 31 34 #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:11sandervl Exp $ */1 /* $Id: oslibdebug.cpp,v 1.2 2000-02-16 14:25:44 sandervl Exp $ */ 2 2 3 3 /* … … 27 27 #include "oslibdebug.h" 28 28 29 #define DBG_LOCALLOG DBG_oslibdebug 30 #include "dbglocal.h" 31 29 32 #define DEBUG_QUEUENAME "\\QUEUES\\ODINTRACE\\" 30 33 #define DEBUG_QSEMNAME "\\SEM32\\ODINTRACEQ\\" -
TabularUnified tags/trunk/src/kernel32/oslibdos.cpp ¶
r13267 r13383 1 /* $Id: oslibdos.cpp,v 1.1 8 2000-02-08 22:29:15 sandervl Exp $ */1 /* $Id: oslibdos.cpp,v 1.19 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 /* 3 3 * Wrappers for OS/2 Dos* API … … 27 27 #include "dosqss.h" 28 28 29 #define DBG_LOCALLOG DBG_oslibdos 30 #include "dbglocal.h" 31 29 32 /*********************************** 30 33 * PH: fixups for missing os2win.h * … … 344 347 } 345 348 //****************************************************************************** 349 DWORD WIN32API GetEnvironmentVariableA(LPCSTR, LPSTR, DWORD ); 346 350 //****************************************************************************** 347 351 DWORD OSLibDosSearchPath(DWORD cmd, char *path, char *name, char *full_name, … … 377 381 case OSLIB_SEARCHENV: 378 382 { 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); 383 393 return 0; 384 394 } 385 if(DosSearchPath(SEARCH_IGNORENETERRS, envstring, 386 name, szResult, sizeof(szResult)) != 0) { 387 return 0; 388 } 395 free(envstring); 389 396 strcpy(full_name, szResult); 390 397 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:23sandervl Exp $ */1 /* $Id: oslibexcept.cpp,v 1.2 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 /* 3 3 * Exception handler util. procedures … … 19 19 #include <exceptions.h> 20 20 21 #define DBG_LOCALLOG DBG_oslibexcept 22 #include "dbglocal.h" 23 21 24 //****************************************************************************** 22 25 //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:11sandervl Exp $ */1 /* $Id: oslibmisc.cpp,v 1.6 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 3 3 /* … … 24 24 #include <misc.h> 25 25 26 #define DBG_LOCALLOG DBG_oslibmisc 27 #include "dbglocal.h" 28 26 29 /*********************************** 27 30 * PH: fixups for missing os2win.h * -
TabularUnified tags/trunk/src/kernel32/resource.cpp ¶
r12912 r13383 1 /* $Id: resource.cpp,v 1.1 4 2000-01-05 19:39:56sandervl Exp $ */1 /* $Id: resource.cpp,v 1.15 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 3 3 /* … … 17 17 #include <winexebase.h> 18 18 #include <windllbase.h> 19 20 #define DBG_LOCALLOG DBG_resource 21 #include "dbglocal.h" 19 22 20 23 //****************************************************************************** -
TabularUnified tags/trunk/src/kernel32/stubs.cpp ¶
r12884 r13383 1 /* $Id: stubs.cpp,v 1.1 8 2000-01-02 22:51:12sandervl Exp $ */1 /* $Id: stubs.cpp,v 1.19 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 3 3 /* … … 23 23 24 24 #include "stubs.h" 25 26 #define DBG_LOCALLOG DBG_stubs 27 #include "dbglocal.h" 25 28 26 29 -
TabularUnified tags/trunk/src/kernel32/unicode.cpp ¶
r12928 r13383 1 /* $Id: unicode.cpp,v 1.2 1 2000-01-06 20:07:10sandervl Exp $ */1 /* $Id: unicode.cpp,v 1.22 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 3 3 /* … … 19 19 #include "codepage.h" 20 20 #include <unicode.h> 21 22 #define DBG_LOCALLOG DBG_unicode 23 #include "dbglocal.h" 21 24 22 25 /*static UconvObject uconv_object = NULL;*/ -
TabularUnified tags/trunk/src/kernel32/wprocess.cpp ¶
r13276 r13383 1 /* $Id: wprocess.cpp,v 1.6 7 2000-02-09 13:42:13sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.68 2000-02-16 14:25:46 sandervl Exp $ */ 2 2 3 3 /* … … 40 40 #include "mmap.h" 41 41 42 #define DBG_LOCALLOG DBG_wprocess 43 #include "dbglocal.h" 42 44 43 45 ODINDEBUGCHANNEL(KERNEL32-WPROCESS) -
TabularUnified tags/trunk/src/user32/win32class.cpp ¶
r13252 r13383 1 /* $Id: win32class.cpp,v 1.1 3 2000-02-06 22:00:23sandervl Exp $ */1 /* $Id: win32class.cpp,v 1.14 2000-02-16 14:28:22 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Class Managment Code for OS/2 … … 25 25 #include <win\winproc.h> 26 26 27 #define DBG_LOCALLOG DBG_win32class 28 #include "dbglocal.h" 29 27 30 static fDestroyAll = FALSE; 28 31 -
TabularUnified tags/trunk/src/user32/win32dlg.cpp ¶
r13252 r13383 1 /* $Id: win32dlg.cpp,v 1.4 3 2000-02-06 22:00:23sandervl Exp $ */1 /* $Id: win32dlg.cpp,v 1.44 2000-02-16 14:28:22 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Dialog Code for OS/2 … … 24 24 #include "controls.h" 25 25 #include "syscolor.h" 26 27 #define DBG_LOCALLOG DBG_win32dlg 28 #include "dbglocal.h" 26 29 27 30 #define DEFAULT_DLGFONT "9.WarpSans" -
TabularUnified tags/trunk/src/user32/win32wbase.cpp ¶
r13375 r13383 1 /* $Id: win32wbase.cpp,v 1.16 2 2000-02-15 14:39:12 sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.163 2000-02-16 14:28:22 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 50 50 #include "timer.h" 51 51 52 #define DBG_LOCALLOG DBG_win32wbase 53 #include "dbglocal.h" 54 52 55 #define SC_ABOUTWINE (SC_SCREENSAVE+1) 53 56 #define SC_PUTMARK (SC_SCREENSAVE+2) -
TabularUnified tags/trunk/src/user32/win32wbasenonclient.cpp ¶
r13319 r13383 1 /* $Id: win32wbasenonclient.cpp,v 1.1 0 2000-02-10 18:49:52 cbratschiExp $ */1 /* $Id: win32wbasenonclient.cpp,v 1.11 2000-02-16 14:28:23 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 (non-client methods) … … 39 39 #include <menu.h> 40 40 41 #define DBG_LOCALLOG DBG_win32wbasenonclient 42 #include "dbglocal.h" 43 41 44 #define SC_ABOUTODIN (SC_SCREENSAVE+1) 42 45 #define SC_PUTMARK (SC_SCREENSAVE+2) … … 957 960 958 961 dprintf(("DoNCPaint %x %x %d", getWindowHandle(), clip, suppress_menupaint)); 962 DecreaseLogCount(); 959 963 960 964 if (!(hdc = GetDCEx( Win32Hwnd, (clip > 1) ? clip : 0, DCX_USESTYLE | DCX_WINDOW | … … 1071 1075 1072 1076 ReleaseDC(Win32Hwnd,hdc); 1077 IncreaseLogCount(); 1073 1078 dprintf(("**DoNCPaint %x DONE", getWindowHandle())); 1074 1079 } -
TabularUnified tags/trunk/src/user32/win32wbasepos.cpp ¶
r13192 r13383 1 /* $Id: win32wbasepos.cpp,v 1.1 2 2000-02-03 17:13:03 cbratschiExp $ */1 /* $Id: win32wbasepos.cpp,v 1.13 2000-02-16 14:28:24 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 (nonclient/position methods) … … 38 38 #include "pmframe.h" 39 39 #include "win32wdesktop.h" 40 41 #define DBG_LOCALLOG DBG_win32wbasepos 42 #include "dbglocal.h" 40 43 41 44 /******************************************************************* -
TabularUnified tags/trunk/src/user32/win32wdesktop.cpp ¶
r13319 r13383 1 /* $Id: win32wdesktop.cpp,v 1.1 1 2000-02-10 18:49:53 cbratschiExp $ */1 /* $Id: win32wdesktop.cpp,v 1.12 2000-02-16 14:28:24 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Desktop Window for OS/2 … … 16 16 #include "oslibwin.h" 17 17 #include "win32wndhandle.h" 18 19 #define DBG_LOCALLOG DBG_win32wdesktop 20 #include "dbglocal.h" 18 21 19 22 Win32Desktop *windowDesktop = 0; -
TabularUnified tags/trunk/src/user32/win32wmdichild.cpp ¶
r13237 r13383 1 /* $Id: win32wmdichild.cpp,v 1.2 1 2000-02-05 14:08:54 sandervl Exp $ */1 /* $Id: win32wmdichild.cpp,v 1.22 2000-02-16 14:28:24 sandervl Exp $ */ 2 2 /* 3 3 * Win32 MDI Child Window Class for OS/2 … … 41 41 #include "win32wndhandle.h" 42 42 43 #define DBG_LOCALLOG DBG_win32wmdichild 44 #include "dbglocal.h" 43 45 44 46 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/win32wmdiclient.cpp ¶
r13052 r13383 1 /* $Id: win32wmdiclient.cpp,v 1.2 3 2000-01-18 20:11:00sandervl Exp $ */1 /* $Id: win32wmdiclient.cpp,v 1.24 2000-02-16 14:28:24 sandervl Exp $ */ 2 2 /* 3 3 * Win32 MDI Client Window Class for OS/2 … … 36 36 #include "win32wndhandle.h" 37 37 38 #define DBG_LOCALLOG DBG_win32wmdiclient 39 #include "dbglocal.h" 40 38 41 39 42 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/win32wnd.cpp ¶
r13052 r13383 1 /* $Id: win32wnd.cpp,v 1. 7 2000-01-18 20:11:01sandervl Exp $ */1 /* $Id: win32wnd.cpp,v 1.8 2000-02-16 14:28:24 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Class for OS/2 … … 36 36 #include "win32wmdiclient.h" 37 37 38 #define DBG_LOCALLOG DBG_win32wnd 39 #include "dbglocal.h" 38 40 39 41 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/win32wndchild.cpp ¶
r13052 r13383 1 /* $Id: win32wndchild.cpp,v 1. 4 2000-01-18 20:11:01sandervl Exp $ */1 /* $Id: win32wndchild.cpp,v 1.5 2000-02-16 14:28:25 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Child/Parent window class for OS/2 … … 13 13 #include <win32wndchild.h> 14 14 #include <misc.h> 15 16 #define DBG_LOCALLOG DBG_win32wndchild 17 #include "dbglocal.h" 15 18 16 19 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/win32wndhandle.cpp ¶
r13052 r13383 1 /* $Id: win32wndhandle.cpp,v 1. 4 2000-01-18 20:11:03sandervl Exp $ */1 /* $Id: win32wndhandle.cpp,v 1.5 2000-02-16 14:28:25 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Handle Management Code for OS/2 … … 19 19 #include <vmutex.h> 20 20 #include "win32wndhandle.h" 21 22 #define DBG_LOCALLOG DBG_win32wndhandle 23 #include "dbglocal.h" 21 24 22 25 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/winaccel.cpp ¶
r13052 r13383 1 /* $Id: winaccel.cpp,v 1. 5 2000-01-18 20:11:04sandervl Exp $ */1 /* $Id: winaccel.cpp,v 1.6 2000-02-16 14:28:25 sandervl Exp $ */ 2 2 /* 3 3 * Win32 accelerator key functions for OS/2 … … 13 13 #include <win32wbase.h> 14 14 #include <winaccel.h> 15 16 #define DBG_LOCALLOG DBG_winaccel 17 #include "dbglocal.h" 15 18 16 19 /***************************************************************************** -
TabularUnified tags/trunk/src/user32/windlg.cpp ¶
r13248 r13383 1 /* $Id: windlg.cpp,v 1.1 5 2000-02-06 17:39:35 cbratschiExp $ */1 /* $Id: windlg.cpp,v 1.16 2000-02-16 14:28:25 sandervl Exp $ */ 2 2 /* 3 3 * Win32 dialog apis for OS/2 … … 26 26 #include <win\drive.h> 27 27 28 #define DBG_LOCALLOG DBG_windlg 29 #include "dbglocal.h" 30 28 31 static INT DIALOG_DlgDirListW( HWND hDlg, LPWSTR spec, INT idLBox, INT idStatic, UINT attrib, BOOL combo ); 29 32 static 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:07sandervl Exp $ */1 /* $Id: windlgmsg.cpp,v 1.6 2000-02-16 14:28:25 sandervl Exp $ */ 2 2 /* 3 3 * Win32 dialog message APIs for OS/2 … … 20 20 #include "win32wbase.h" 21 21 #include "win32dlg.h" 22 23 #define DBG_LOCALLOG DBG_windlgmsg 24 #include "dbglocal.h" 22 25 23 26 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/window.cpp ¶
r13141 r13383 1 /* $Id: window.cpp,v 1.5 4 2000-01-29 14:23:33sandervl Exp $ */1 /* $Id: window.cpp,v 1.55 2000-02-16 14:28:26 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 31 31 #include "winicon.h" 32 32 #include <win\winpos.h> 33 34 #define DBG_LOCALLOG DBG_window 35 #include "dbglocal.h" 33 36 34 37 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/windowclass.cpp ¶
r13052 r13383 1 /* $Id: windowclass.cpp,v 1. 8 2000-01-18 20:11:09sandervl Exp $ */1 /* $Id: windowclass.cpp,v 1.9 2000-02-16 14:28:26 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Class Code for OS/2 … … 20 20 #include <win32wbase.h> 21 21 #include <controls.h> 22 23 #define DBG_LOCALLOG DBG_windowclass 24 #include "dbglocal.h" 22 25 23 26 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/windowmsg.cpp ¶
r13158 r13383 1 /* $Id: windowmsg.cpp,v 1.1 8 2000-01-30 18:48:29sandervl Exp $ */1 /* $Id: windowmsg.cpp,v 1.19 2000-02-16 14:28:26 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message APIs for OS/2 … … 24 24 #include "oslibwin.h" 25 25 #include "oslibmsg.h" 26 27 #define DBG_LOCALLOG DBG_windowmsg 28 #include "dbglocal.h" 26 29 27 30 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/windowword.cpp ¶
r13052 r13383 1 /* $Id: windowword.cpp,v 1. 7 2000-01-18 20:11:12sandervl Exp $ */1 /* $Id: windowword.cpp,v 1.8 2000-02-16 14:28:27 sandervl Exp $ */ 2 2 3 3 /* … … 14 14 15 15 #include <win32wbase.h> 16 17 #define DBG_LOCALLOG DBG_windowword 18 #include "dbglocal.h" 16 19 17 20 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/wingdi.cpp ¶
r13052 r13383 1 /* $Id: wingdi.cpp,v 1. 5 2000-01-18 20:11:12sandervl Exp $ */1 /* $Id: wingdi.cpp,v 1.6 2000-02-16 14:28:27 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window graphics apis for OS/2 … … 17 17 #include <oslibwin.h> 18 18 #include <oslibgdi.h> 19 20 #define DBG_LOCALLOG DBG_wingdi 21 #include "dbglocal.h" 19 22 20 23 #define OPEN32_GDI -
TabularUnified tags/trunk/src/user32/winicon.cpp ¶
r13052 r13383 1 /* $Id: winicon.cpp,v 1. 8 2000-01-18 20:11:15sandervl Exp $ */1 /* $Id: winicon.cpp,v 1.9 2000-02-16 14:28:27 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Icon Code for OS/2 … … 21 21 #include <winicon.h> 22 22 #include <win\cursoricon.h> 23 24 #define DBG_LOCALLOG DBG_winicon 25 #include "dbglocal.h" 23 26 24 27 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/winkeyboard.cpp ¶
r13052 r13383 1 /* $Id: winkeyboard.cpp,v 1. 4 2000-01-18 20:11:16sandervl Exp $ */1 /* $Id: winkeyboard.cpp,v 1.5 2000-02-16 14:28:27 sandervl Exp $ */ 2 2 /* 3 3 * Win32 <-> PM key translation … … 14 14 #include "oslibwin.h" 15 15 #include <heapstring.h> 16 17 #define DBG_LOCALLOG DBG_winkeyboard 18 #include "dbglocal.h" 16 19 17 20 BYTE abPMScanToWinVKey[256] = -
TabularUnified tags/trunk/src/user32/winmouse.cpp ¶
r13052 r13383 1 /* $Id: winmouse.cpp,v 1. 4 2000-01-18 20:11:19sandervl Exp $ */1 /* $Id: winmouse.cpp,v 1.5 2000-02-16 14:28:28 sandervl Exp $ */ 2 2 /* 3 3 * Mouse handler for DINPUT … … 15 15 #include "oslibmsg.h" 16 16 #include "pmwindow.h" 17 18 #define DBG_LOCALLOG DBG_winmouse 19 #include "dbglocal.h" 17 20 18 21 LPMOUSE_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:21sandervl Exp $ */1 /* $Id: winproc.cpp,v 1.4 2000-02-16 14:28:28 sandervl Exp $ */ 2 2 /* 3 3 * Window procedure callbacks … … 21 21 #include <heapcode.h> 22 22 #include "win32wbase.h" 23 24 #define DBG_LOCALLOG DBG_winproc 25 #include "dbglocal.h" 23 26 24 27 DECLARE_DEBUG_CHANNEL(relay) -
TabularUnified tags/trunk/src/user32/winprop.cpp ¶
r13052 r13383 1 /* $Id: winprop.cpp,v 1. 6 2000-01-18 20:11:22sandervl Exp $ */1 /* $Id: winprop.cpp,v 1.7 2000-02-16 14:28:28 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Property apis for OS/2 … … 13 13 #include <misc.h> 14 14 #include "win32wbase.h" 15 16 #define DBG_LOCALLOG DBG_winprop 17 #include "dbglocal.h" 15 18 16 19 #undef DEBUG -
TabularUnified tags/trunk/src/user32/winswitch.cpp ¶
r13052 r13383 1 /* $Id: winswitch.cpp,v 1. 3 2000-01-18 20:11:24sandervl Exp $ */1 /* $Id: winswitch.cpp,v 1.4 2000-02-16 14:28:28 sandervl Exp $ */ 2 2 /* 3 3 * WinSwitch control … … 14 14 #include "controls.h" 15 15 #include "winswitch.h" 16 17 #define DBG_LOCALLOG DBG_winswitch 18 #include "dbglocal.h" 16 19 17 20 LRESULT WINAPI WinSwitchWndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam)
Note:
See TracChangeset
for help on using the changeset viewer.