Changeset 7627 for trunk/src/user32
- Timestamp:
- Dec 13, 2001, 4:32:57 PM (24 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/Makefile
r6961 r7627 1 # $Id: Makefile,v 1.9 7 2001-10-07 11:48:27 sandervl Exp $1 # $Id: Makefile,v 1.98 2001-12-13 15:32:57 sandervl Exp $ 2 2 3 3 # … … 101 101 $(OBJDIR)\oldnls32.obj \ 102 102 $(OBJDIR)\user32rsrc.obj \ 103 $(OBJDIR)\oslibprf.obj 103 $(OBJDIR)\oslibprf.obj \ 104 $(OBJDIR)\stats.obj 104 105 105 106 -
trunk/src/user32/dc.cpp
r6941 r7627 1 /* $Id: dc.cpp,v 1.11 2 2001-10-03 18:37:51sandervl Exp $ */1 /* $Id: dc.cpp,v 1.113 2001-12-13 15:32:57 sandervl Exp $ */ 2 2 3 3 /* … … 36 36 #include <codepage.h> 37 37 #include <wingdi32.h> 38 #include <stats.h> 38 39 39 40 #define INCLUDED_BY_DC … … 874 875 UnselectGDIObjects(hdc); 875 876 rc = O32_ReleaseDC (0, hdc); 877 STATS_ReleaseDC(hwnd, hdc); 876 878 } 877 879 … … 946 948 947 949 RELEASE_WNDOBJ(wnd); 950 951 STATS_GetDCEx(hwnd, hps, hrgn, flags); 952 948 953 return (HDC)hps; 949 954 } … … 1081 1086 RELEASE_WNDOBJ(wnd); 1082 1087 1088 1089 STATS_GetDCEx(hwnd, pHps->hps, hrgn, flags); 1083 1090 return (HDC)pHps->hps; 1084 1091 -
trunk/src/user32/inituser32.cpp
r7622 r7627 1 /* $Id: inituser32.cpp,v 1. 8 2001-12-13 12:24:42sandervl Exp $ */1 /* $Id: inituser32.cpp,v 1.9 2001-12-13 15:32:57 sandervl Exp $ */ 2 2 /* 3 3 * USER32 DLL entry point … … 47 47 #include <exitlist.h> 48 48 #include <initdll.h> 49 #include <stats.h> 49 50 50 51 #define DBG_LOCALLOG DBG_initterm … … 262 263 SYSCOLOR_Save(); 263 264 CloseSpyQueue(); 265 STATS_DumpStats(); 264 266 dprintf(("user32 exit done\n")); 265 267 }
Note:
See TracChangeset
for help on using the changeset viewer.