home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / samples / mm / daudio / daudio.dlg < prev    next >
Text File  |  1999-05-11  |  2KB  |  39 lines

  1.  
  2.  /***************************************************************************
  3.  *                                                                          *
  4.  * File Name        : DAUDIO.DLG                                            *
  5.  *                                                                          *
  6.  *                                                                          *
  7.  * Copyright        : COPYRIGHT IBM CORPORATION, 1991, 1992, 1993           *
  8.  *                                                                          *
  9.  *       DISCLAIMER OF WARRANTIES.  The following [enclosed] code is        *
  10.  *       sample code created by IBM Corporation. This sample code is not    *
  11.  *       part of any standard or IBM product and is provided to you solely  *
  12.  *       for  the purpose of assisting you in the development of your       *
  13.  *       applications.  The code is provided "AS IS", without               *
  14.  *       warranty of any kind.  IBM shall not be liable for any damages     *
  15.  *       arising out of your use of the sample code, even if they have been *
  16.  *       advised of the possibility of such damages.                        *
  17.  *                                                                          *
  18.  ****************************************************************************/
  19.  
  20.  
  21.  
  22. #ifndef OS2_INCLUDED
  23.    #include <os2.h>
  24. #endif
  25.  
  26. DLGINCLUDE 1 "daudio.h"
  27.  
  28.  
  29. DLGTEMPLATE ID_DIALOG LOADONCALL MOVEABLE DISCARDABLE
  30. BEGIN
  31.     DIALOG  "Direct Audio Sample", 100, 56, 38, 153, 27, WS_VISIBLE,
  32.             FCF_SYSMENU | FCF_TITLEBAR | FCF_TASKLIST
  33.     BEGIN
  34.         PUSHBUTTON      "PLAY", ID_PLAY, 3, 6, 40, 14
  35.         PUSHBUTTON      "REC", ID_RECORD, 56, 6, 40, 14
  36.         PUSHBUTTON      "STOP", ID_STOP, 108, 6, 40, 14
  37.     END
  38. END
  39.