home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / SOUND.ZIP / snd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-11-21  |  1.5 KB  |  56 lines

  1. // snd.h : main header file for the SND application
  2. //
  3.  
  4. #if !defined(AFX_SND_H__2AAD2285_7424_11D2_8045_540610C10374__INCLUDED_)
  5. #define AFX_SND_H__2AAD2285_7424_11D2_8045_540610C10374__INCLUDED_
  6.  
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10.  
  11. #ifndef __AFXWIN_H__
  12.     #error include 'stdafx.h' before including this file for PCH
  13. #endif
  14.  
  15. #include "resource.h"       // main symbols
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CSndApp:
  19. // See snd.cpp for the implementation of this class
  20. //
  21.  
  22. class CSndApp : public CWinApp
  23. {
  24. public:
  25.     CSndApp();
  26.  
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CSndApp)
  30.     public:
  31.     virtual BOOL InitInstance();
  32.     virtual int ExitInstance();
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36.  
  37.     //{{AFX_MSG(CSndApp)
  38.     afx_msg void OnAppAbout();
  39.     afx_msg void OnSoundOutStart();
  40.     afx_msg void OnSoundInStop();
  41.     afx_msg void OnSoundInStart();
  42.     afx_msg void OnSoundOutStop();
  43.         // NOTE - the ClassWizard will add and remove member functions here.
  44.         //    DO NOT EDIT what you see in these blocks of generated code !
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.  
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  54.  
  55. #endif // !defined(AFX_SND_H__2AAD2285_7424_11D2_8045_540610C10374__INCLUDED_)
  56.