Changeset 6639 for trunk/src/ws2_32/initterm.cpp
- Timestamp:
- Sep 5, 2001, 12:30:21 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ws2_32/initterm.cpp
r5664 r6639 1 /* 1 /* $Id: initterm.cpp,v 1.2 2001-09-05 10:27:06 bird Exp $ 2 * 2 3 * DLL entry point 3 4 * … … 36 37 #include <initdll.h> 37 38 38 #define DBG_LOCALLOG 39 #define DBG_LOCALLOG DBG_initterm 39 40 #include "dbglocal.h" 40 41 … … 52 53 { 53 54 case DLL_PROCESS_ATTACH: 54 55 return TRUE; 55 56 56 57 case DLL_THREAD_ATTACH: 57 58 case DLL_THREAD_DETACH: 58 59 return TRUE; 59 60 60 61 case DLL_PROCESS_DETACH: 61 62 62 ctordtorTerm(); 63 return TRUE; 63 64 } 64 65 return FALSE; … … 91 92 CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/ 92 93 93 94 if(dllHandle == 0) 95 94 dllHandle = RegisterLxDll(hModule, OdinLibMain, (PVOID)&_Resource_PEResTab); 95 if(dllHandle == 0) 96 return 0UL; 96 97 97 98 break; 98 99 case 1 : 99 100 if(dllHandle) { 100 101 UnregisterLxDll(dllHandle); 101 102 } 102 103 break;
Note:
See TracChangeset
for help on using the changeset viewer.