home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / playwave / sndplay.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-13  |  249 b   |  12 lines

  1. #include "playwave.hpp"
  2.  
  3. PLAYWAVE    PlayWave;
  4.  
  5. int PASCAL WinMain(HANDLE hInstance,
  6.            HANDLE hPrevInstance,
  7.            LPSTR lpstrCmdLine,
  8.            int nCmdShow)
  9. {
  10.   PlayWave.Resource(hInstance,"SOUND");
  11.   PlayWave.Play("SPOCKD.WAV",SOUND_SYNC);
  12. }