home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / beaversweeper_v101.zip / src / Globals.h < prev    next >
C/C++ Source or Header  |  2003-01-06  |  282b  |  17 lines

  1. #ifndef __GLOBALS_H__
  2. #define __GLOBALS_H__
  3.  
  4. // MIDI-Input! MIDIInput.h/MIDIInput.cpp
  5. class MIDIInput;
  6. extern MIDIInput *g_midi_input;
  7. extern UINT g_midi_device;
  8.  
  9. extern UINT g_patposadd, g_chanposadd;
  10.  
  11.  
  12. void GLOBALS_INIT(void);
  13. void GLOBALS_DESTROY(void);
  14.  
  15.  
  16. #endif
  17.