Ignore:
Timestamp:
Feb 14, 2001, 12:41:04 PM (25 years ago)
Author:
sandervl
Message:

initterm call fixes

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 
    31/*
    42 * WINMM DLL entry point
     
    3836#include <winconst.h>
    3937#include <odinlx.h>
     38#include <initdll.h>
    4039#include "auxiliary.h"
    4140
     
    4443
    4544BOOL MULTIMEDIA_MciInit(void);
    46 BOOL    MULTIMEDIA_CreateIData(HINSTANCE hinstDLL);
     45BOOL MULTIMEDIA_CreateIData(HINSTANCE hinstDLL);
    4746void MULTIMEDIA_DeleteIData(void);
    4847
    4948extern "C" {
    5049void IRTMidiShutdown();  // IRTMidi shutdown routine
    51 void CDECL _ctordtorInit( void );
    52 void CDECL _ctordtorTerm( void );
    53 
    5450
    5551 //Win32 resource table (produced by wrc)
     
    8581
    8682   case DLL_PROCESS_DETACH:
    87      MULTIMEDIA_DeleteIData();
     83        MULTIMEDIA_DeleteIData();
    8884        auxOS2Close(); /* SvL: Close aux device if necessary */
    8985        IRTMidiShutdown;  /* JT: Shutdown RT Midi subsystem, if running. */
    90         _ctordtorTerm();
     86        __ctordtorTerm();
    9187        return TRUE;
    9288   }
     
    115111   switch (ulFlag) {
    116112      case 0 :
    117          _ctordtorInit();
     113         __ctordtorInit();
    118114
    119115         ParseLogStatus();
Note: See TracChangeset for help on using the changeset viewer.