home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / directx / rockem / midi.h < prev    next >
C/C++ Source or Header  |  1997-07-14  |  422b  |  20 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995-1997 Microsoft Corporation. All Rights Reserved.
  4.  *
  5.  *  File: midi.h
  6.  *
  7.  ***************************************************************************/
  8.  
  9. #ifndef __MIDI_H
  10. #define __MIDI_H
  11.  
  12. BOOL PlayMidi(char *sFileName);
  13. BOOL PauseMidi();
  14. BOOL ResumeMidi();
  15. BOOL StopMidi();
  16. BOOL ReplayMidi();
  17.  
  18. #endif
  19.  
  20.