Changeset 3993 for trunk/src/opengl/glu/initterm.cpp
- Timestamp:
- Aug 11, 2000, 12:56:27 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glu/initterm.cpp
r2996 r3993 1 /* $Id: initterm.cpp,v 1. 7 2000-03-04 19:10:12 jeroenExp $ */1 /* $Id: initterm.cpp,v 1.8 2000-08-11 10:56:22 sandervl Exp $ */ 2 2 3 3 /* … … 43 43 extern DWORD _Resource_PEResTab; 44 44 } 45 static HMODULE dllHandle = 0; 45 46 46 47 //****************************************************************************** … … 86 87 _ctordtorInit(); 87 88 88 /*******************************************************************/89 /* A DosExitList routine must be used to clean up if runtime calls */90 /* are required and the runtime is dynamically linked. */91 /*******************************************************************/92 93 if(RegisterLxDll(hModule, LibMain, (PVOID)&_Resource_PEResTab) == FALSE)94 return 0UL;95 96 89 CheckVersionFromHMOD(PE2LX_VERSION, hModule);/* PLF Wed 98-03-18 05:28:48*/ 97 90 91 dllHandle = RegisterLxDll(hModule, LibMain, (PVOID)&_Resource_PEResTab); 92 if(dllHandle == 0) 93 return 0UL; 94 98 95 break; 99 100 96 case 1 : 101 UnregisterLxDll(hModule); 97 if(dllHandle) { 98 UnregisterLxDll(dllHandle); 99 } 102 100 break; 103 101
Note:
See TracChangeset
for help on using the changeset viewer.