Changeset 5130 for trunk/src/winmm/initterm.cpp
- Timestamp:
- Feb 14, 2001, 12:41:04 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/winmm/initterm.cpp
r4748 r5130 1 /* $Id: initterm.cpp,v 1.11 2000-12-03 22:18:17 sandervl Exp $ */2 3 1 /* 4 2 * WINMM DLL entry point … … 38 36 #include <winconst.h> 39 37 #include <odinlx.h> 38 #include <initdll.h> 40 39 #include "auxiliary.h" 41 40 … … 44 43 45 44 BOOL MULTIMEDIA_MciInit(void); 46 BOOL 45 BOOL MULTIMEDIA_CreateIData(HINSTANCE hinstDLL); 47 46 void MULTIMEDIA_DeleteIData(void); 48 47 49 48 extern "C" { 50 49 void IRTMidiShutdown(); // IRTMidi shutdown routine 51 void CDECL _ctordtorInit( void );52 void CDECL _ctordtorTerm( void );53 54 50 55 51 //Win32 resource table (produced by wrc) … … 85 81 86 82 case DLL_PROCESS_DETACH: 87 MULTIMEDIA_DeleteIData();83 MULTIMEDIA_DeleteIData(); 88 84 auxOS2Close(); /* SvL: Close aux device if necessary */ 89 85 IRTMidiShutdown; /* JT: Shutdown RT Midi subsystem, if running. */ 90 _ ctordtorTerm();86 __ctordtorTerm(); 91 87 return TRUE; 92 88 } … … 115 111 switch (ulFlag) { 116 112 case 0 : 117 _ ctordtorInit();113 __ctordtorInit(); 118 114 119 115 ParseLogStatus();
Note:
See TracChangeset
for help on using the changeset viewer.