Changeset 5130 for trunk/src/dsound/initterm.cpp
- Timestamp:
- Feb 14, 2001, 12:41:04 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/dsound/initterm.cpp
r4028 r5130 1 /* $Id: initterm.cpp,v 1.12 2000-08-17 18:21:05 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 63 59 case DLL_PROCESS_DETACH: 64 _ ctordtorTerm();60 __ctordtorTerm(); 65 61 return TRUE; 66 62 } … … 93 89 char *endofpath = strrchr(dsoundPath, '\\'); 94 90 if(endofpath) *(endofpath+1) = 0; 95 _ ctordtorInit();91 __ctordtorInit(); 96 92 97 93 CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/
Note:
See TracChangeset
for help on using the changeset viewer.