Changeset 5130 for trunk/src/Odin32API/odindll.cpp
- Timestamp:
- Feb 14, 2001, 12:41:04 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Odin32API/odindll.cpp
r3993 r5130 1 /* $Id: odindll.cpp,v 1. 2 2000-08-11 10:56:12sandervl Exp $ */1 /* $Id: odindll.cpp,v 1.3 2001-02-14 11:40:58 sandervl Exp $ */ 2 2 3 3 /* … … 35 35 #include <odinlx.h> 36 36 #include <misc.h> /*PLF Wed 98-03-18 23:18:15*/ 37 #include <initdll.h> 37 38 38 39 extern "C" { 39 void CDECL _ctordtorInit( void );40 void CDECL _ctordtorTerm( void );41 40 42 41 //Win32 resource table (produced by wrc) … … 78 77 switch (ulFlag) { 79 78 case 0 : 80 _ ctordtorInit();79 __ctordtorInit(); 81 80 82 81 CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/ … … 91 90 return 0UL; 92 91 93 rc = DosExitList( 0x0000F000|EXLST_ADD, cleanup);92 rc = DosExitList(EXITLIST_APPDLL|EXLST_ADD, cleanup); 94 93 if(rc) 95 94 return 0UL; … … 114 113 static void APIENTRY cleanup(ULONG ulReason) 115 114 { 116 _ ctordtorTerm();115 __ctordtorTerm(); 117 116 DosExitList(EXLST_EXIT, cleanup); 118 117 return ;
Note:
See TracChangeset
for help on using the changeset viewer.