Changeset 5130 for trunk/src/gdi32/initterm.cpp
- Timestamp:
- Feb 14, 2001, 12:41:04 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/initterm.cpp
r4873 r5130 1 /* $Id: initterm.cpp,v 1.13 2001-01-05 23:25:30 sandervl Exp $ */2 3 1 /* 4 2 * DLL entry point … … 39 37 #include "dbglocal.h" 40 38 #include "region.h" 39 #include <initdll.h> 41 40 42 41 extern "C" { 43 void CDECL _ctordtorInit( void );44 void CDECL _ctordtorTerm( void );45 46 42 //Win32 resource table (produced by wrc) 47 43 extern DWORD _Resource_PEResTab; … … 62 58 63 59 case DLL_PROCESS_DETACH: 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 ParseLogStatus();
Note:
See TracChangeset
for help on using the changeset viewer.