- Timestamp:
- Mar 23, 2011, 3:29:36 PM (14 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/Makefile
r21348 r21595 118 118 $(OBJDIR)\dbgwrap.obj \ 119 119 !endif 120 $(OBJDIR)\stats.obj 120 $(OBJDIR)\stats.obj \ 121 $(OBJDIR)\auxthread.obj 121 122 122 123 -
trunk/src/user32/USER32.DEF
r21553 r21595 760 760 GetWindowInfo = _GetWindowInfo@8 @2046 761 761 _HPSToHDC @2047 762 763 _RunOnAuxThread@20 @2048 NONAME 764 _RunOnAuxThreadAndWait@24 @2049 NONAME -
trunk/src/user32/inituser32.cpp
r21303 r21595 50 50 #include "syscolor.h" 51 51 #include "initterm.h" 52 #include "auxthread.h" 52 53 #include <exitlist.h> 53 54 #include <initdll.h> … … 77 78 #define REGPATH "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Fonts" 78 79 //****************************************************************************** 79 void MigrateWindowsFonts()80 static void MigrateWindowsFonts() 80 81 { 81 82 HKEY hkFonts,hkOS2Fonts; … … 127 128 } 128 129 } 130 131 static BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad) 132 { 133 switch (fdwReason) 134 { 135 case DLL_PROCESS_ATTACH: 136 case DLL_THREAD_ATTACH: 137 case DLL_THREAD_DETACH: 138 return TRUE; 139 case DLL_PROCESS_DETACH: 140 { 141 StopAuxThread(); 142 return TRUE; 143 } 144 default: 145 break; 146 } 147 return FALSE; 148 } 149 129 150 /****************************************************************************/ 130 151 /* _DLL_InitTerm is the function that gets called by the operating system */ … … 150 171 case 0 : 151 172 STATS_InitializeUSER32 (); 152 173 153 174 ParseLogStatusUSER32(); 154 175 … … 156 177 CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/ 157 178 158 hInstanceUser32 = RegisterLxDll(hModule, 0, (PVOID)&user32_PEResTab,179 hInstanceUser32 = RegisterLxDll(hModule, DllMain, (PVOID)&user32_PEResTab, 159 180 USER32_MAJORIMAGE_VERSION, USER32_MINORIMAGE_VERSION, 160 181 IMAGE_SUBSYSTEM_WINDOWS_GUI); -
trunk/src/user32/user32dbg.def
r21553 r21595 756 756 GetWindowInfo = _GetWindowInfo@8 @2046 757 757 _HPSToHDC @2047 758 759 _RunOnAuxThread@20 @2048 NONAME 760 _RunOnAuxThreadAndWait@24 @2049 NONAME
Note:
See TracChangeset
for help on using the changeset viewer.