Changeset 2803 for trunk/src/user32
- Timestamp:
- Feb 16, 2000, 3:28:28 PM (26 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32class.cpp
r2672 r2803 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 -
trunk/src/user32/win32dlg.cpp
r2672 r2803 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" -
trunk/src/user32/win32wbase.cpp
r2795 r2803 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) -
trunk/src/user32/win32wbasenonclient.cpp
r2739 r2803 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 } -
trunk/src/user32/win32wbasepos.cpp
r2611 r2803 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 /******************************************************************* -
trunk/src/user32/win32wdesktop.cpp
r2739 r2803 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; -
trunk/src/user32/win32wmdichild.cpp
r2657 r2803 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 //****************************************************************************** -
trunk/src/user32/win32wmdiclient.cpp
r2469 r2803 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 //****************************************************************************** -
trunk/src/user32/win32wnd.cpp
r2469 r2803 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 //****************************************************************************** -
trunk/src/user32/win32wndchild.cpp
r2469 r2803 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 //****************************************************************************** -
trunk/src/user32/win32wndhandle.cpp
r2469 r2803 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 //****************************************************************************** -
trunk/src/user32/winaccel.cpp
r2469 r2803 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 /***************************************************************************** -
trunk/src/user32/windlg.cpp
r2668 r2803 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 ); -
trunk/src/user32/windlgmsg.cpp
r2469 r2803 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 //****************************************************************************** -
trunk/src/user32/window.cpp
r2560 r2803 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 //****************************************************************************** -
trunk/src/user32/windowclass.cpp
r2469 r2803 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 //****************************************************************************** -
trunk/src/user32/windowmsg.cpp
r2577 r2803 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 //****************************************************************************** -
trunk/src/user32/windowword.cpp
r2469 r2803 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 //****************************************************************************** -
trunk/src/user32/wingdi.cpp
r2469 r2803 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 -
trunk/src/user32/winicon.cpp
r2469 r2803 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 //****************************************************************************** -
trunk/src/user32/winkeyboard.cpp
r2469 r2803 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] = -
trunk/src/user32/winmouse.cpp
r2469 r2803 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; -
trunk/src/user32/winproc.cpp
r2469 r2803 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) -
trunk/src/user32/winprop.cpp
r2469 r2803 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 -
trunk/src/user32/winswitch.cpp
r2469 r2803 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.