home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / sound / closesnd.c < prev    next >
C/C++ Source or Header  |  1988-08-10  |  2KB  |  75 lines

  1. /*
  2.  *  Function Name:   CloseSound
  3.  *  Program Name:    CloseSnd.c
  4.  *
  5.  *  Description:
  6.  *   CloseSound closes access to the play device and frees the device for
  7.  *   opening by other applications.  the CloseSound function flushes all
  8.  *   voice queues and frees any buffers allocated for these queues.
  9.  */
  10.  
  11. #include "windows.h"
  12. #include "stdio.h"
  13.  
  14. long    FAR PASCAL WndProc (HWND, unsigned, WORD, LONG);
  15.  
  16. /***********************************************************************/
  17.  
  18. void CALL_CloseSound (hWnd)
  19. HWND hWnd;
  20.  
  21. {
  22.   char    szBuffer[30];
  23.   short    nVoices; /* Specifies the number of voices available. */
  24.  
  25.   nVoices = OpenSound (); /* Opens access to play device, locks it from  */
  26. /* further users, returns the number of voices */
  27. /* available.                                  */
  28.  
  29.   if (nVoices == S_SERDVNA)
  30.     MessageBox (NULL, (LPSTR) "Play device in use.", (LPSTR) "Error", MB_OK);
  31.   else if (nVoices == S_SEROFM)
  32.     MessageBox (NULL, (LPSTR) "Insufficient memory available.",
  33.         (LPSTR) "Error\0", MB_OK);
  34.   else
  35.   {
  36.     sprintf (szBuffer, "%d voice (s) are available.", nVoices);
  37.     MessageBox (NULL, (LPSTR) szBuffer,
  38.         (LPSTR)"Mission Accomplished\0", MB_OK);
  39.  
  40.     CloseSound ();    /* Closesnd closes the play device, allowing other */
  41. /* applications to use the device.                 */
  42.   }
  43.   if ( (nVoices != S_SEROFM) && (nVoices != S_SERDVNA))
  44.   {
  45.     MessageBox (NULL, (LPSTR)"CloseSound complete, device available.",
  46.         (LPSTR)"Mission Accomplished\0", MB_OK);
  47.   }
  48.   else
  49.   {
  50.     MessageBox (NULL, (LPSTR)"Device unavailable, try later",
  51.         (LPSTR)"Mission Failed", MB_OK);
  52.  
  53.   }
  54.  
  55.   return;
  56. }
  57.  
  58.  
  59. /**************************************************************************/
  60.  
  61. int    PASCAL WinMain (hInstance, hPrevInstance, lpszCmdLine, cmdShow)
  62. HANDLE hInstance, hPrevInstance;
  63. LPSTR lpszCmdLine;
  64. int    cmdShow;
  65. {
  66.   MSG   msg;
  67.   HWND  hWnd;
  68.   HMENU hMenu;
  69.  
  70.   CALL_CloseSound (hWnd);
  71.   return 0;
  72. }
  73.  
  74.  
  75.