Changeset 5130 for trunk/src/opengl
- Timestamp:
- Feb 14, 2001, 12:41:04 PM (25 years ago)
- Location:
- trunk/src/opengl
- Files:
-
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glide/cvg/initterm.cpp
r3993 r5130 1 /* $Id: initterm.cpp,v 1.2 2000-08-11 10:56:22 sandervl Exp $ */2 3 1 /* 4 2 * DLL entry point … … 34 32 #include <odinlx.h> 35 33 #include <misc.h> /* PLF Wed 98-03-18 23:18:15 */ 34 #include <initdll.h> 36 35 37 36 extern "C" { 38 void CDECL _ctordtorInit( void );39 void CDECL _ctordtorTerm( void );40 41 37 //Win32 resource table (produced by wrc) 42 38 extern DWORD _Resource_PEResTab; … … 58 54 59 55 case DLL_PROCESS_DETACH: 60 _ctordtorTerm();61 56 DllMain(hinstDLL, fdwReason, fImpLoad); 57 __ctordtorTerm(); 62 58 return TRUE; 63 59 } … … 86 82 switch (ulFlag) { 87 83 case 0 : 88 _ ctordtorInit();84 __ctordtorInit(); 89 85 90 86 CheckVersionFromHMOD(PE2LX_VERSION, hModule);/* PLF Wed 98-03-18 05:28:48*/ -
trunk/src/opengl/glide/sst1/initterm.cpp
r3993 r5130 1 /* $Id: initterm.cpp,v 1.2 2000-08-11 10:56:22 sandervl Exp $ */2 3 1 /* 4 2 * DLL entry point … … 34 32 #include <odinlx.h> 35 33 #include <misc.h> /* PLF Wed 98-03-18 23:18:15 */ 34 #include <initdll.h> 36 35 37 36 extern "C" { 38 void CDECL _ctordtorInit( void );39 void CDECL _ctordtorTerm( void );40 41 37 //Win32 resource table (produced by wrc) 42 38 extern DWORD _Resource_PEResTab; … … 58 54 59 55 case DLL_PROCESS_DETACH: 60 _ctordtorTerm();61 56 DllMain(hinstDLL, fdwReason, fImpLoad); 57 __ctordtorTerm(); 62 58 return TRUE; 63 59 } … … 86 82 switch (ulFlag) { 87 83 case 0 : 88 _ ctordtorInit();84 __ctordtorInit(); 89 85 90 86 CheckVersionFromHMOD(PE2LX_VERSION, hModule);/* PLF Wed 98-03-18 05:28:48*/ -
trunk/src/opengl/glu/makefile
r4720 r5130 1 # $Id: makefile,v 1.1 5 2000-12-03 00:26:14 birdExp $1 # $Id: makefile,v 1.16 2001-02-14 11:41:02 sandervl Exp $ 2 2 3 3 # … … 33 33 # 34 34 OBJS = \ 35 $(OBJDIR)\ initterm.obj \36 $( OBJDIR)\glu32rsrc.obj35 $(OBJDIR)\glu32rsrc.obj \ 36 $(DLLENTRY) 37 37 38 38 -
trunk/src/opengl/glut/initterm.cpp
r3993 r5130 1 /* $Id: initterm.cpp,v 1.9 2000-08-11 10:56:23 sandervl Exp $ */2 3 1 /* 4 2 * DLL entry point … … 35 33 #include <winconst.h> 36 34 #include <odinlx.h> 37 35 #include <initdll.h> 38 36 39 37 extern "C" { 40 void CDECL _ctordtorInit( void );41 void CDECL _ctordtorTerm( void );42 43 38 //Win32 resource table (produced by wrc) 44 39 extern DWORD _Resource_PEResTab; … … 61 56 case DLL_PROCESS_DETACH: 62 57 Glut32Terminate(); 63 _ ctordtorTerm();64 return TRUE;58 __ctordtorTerm(); 59 return TRUE; 65 60 } 66 61 return FALSE; … … 87 82 switch (ulFlag) { 88 83 case 0 : 89 _ ctordtorInit();84 __ctordtorInit(); 90 85 91 86 CheckVersionFromHMOD(PE2LX_VERSION, hModule);/* PLF Wed 98-03-18 05:28:48*/ -
trunk/src/opengl/mesa/3dfx/initterm.cpp
r3993 r5130 1 /* $Id: initterm.cpp,v 1.2 2000-08-11 10:56:23 sandervl Exp $ */2 3 1 /* 4 2 * DLL entry point … … 36 34 #include <odinlx.h> 37 35 #include <misc.h> /* PLF Wed 98-03-18 23:18:15 */ 36 #include <initdll.h> 38 37 39 38 extern "C" { 40 void CDECL _ctordtorInit( void );41 void CDECL _ctordtorTerm( void );42 43 39 //Win32 resource table (produced by wrc) 44 40 extern DWORD _Resource_PEResTab; … … 62 58 case DLL_PROCESS_DETACH: 63 59 cleangraphics(); 64 _ ctordtorTerm();60 __ctordtorTerm(); 65 61 return TRUE; 66 62 } … … 89 85 switch (ulFlag) { 90 86 case 0 : 91 _ ctordtorInit();87 __ctordtorInit(); 92 88 93 89 CheckVersionFromHMOD(PE2LX_VERSION, hModule);/* PLF Wed 98-03-18 05:28:48*/ -
trunk/src/opengl/mesa/initterm.cpp
r3993 r5130 1 /* $Id: initterm.cpp,v 1.5 2000-08-11 10:56:23 sandervl Exp $ */2 3 1 /* 4 2 * DLL entry point … … 36 34 #include <odinlx.h> 37 35 #include <misc.h> /* PLF Wed 98-03-18 23:18:15 */ 36 #include <initdll.h> 38 37 39 38 extern "C" { 40 void CDECL _ctordtorInit( void );41 void CDECL _ctordtorTerm( void );42 43 39 //Win32 resource table (produced by wrc) 44 40 extern DWORD _Resource_PEResTab; … … 66 62 DiveGlobalTerminate(); 67 63 #endif 68 _ ctordtorTerm();64 __ctordtorTerm(); 69 65 return TRUE; 70 66 } … … 94 90 switch (ulFlag) { 95 91 case 0 : 96 _ ctordtorInit();92 __ctordtorInit(); 97 93 98 94 CheckVersionFromHMOD(PE2LX_VERSION, hModule);/* PLF Wed 98-03-18 05:28:48*/
Note:
See TracChangeset
for help on using the changeset viewer.