home *** CD-ROM | disk | FTP | other *** search
/ NEXT Generation 27 / NEXT27.iso / pc / demos / emperor / dx3.exe / SDK / SAMPLES / ROCKEM / MIDI.H < prev    next >
C/C++ Source or Header  |  1996-08-28  |  423b  |  20 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995, 1996 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.