home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch11 / myradio / myradio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-22  |  1010 b   |  48 lines

  1. // myradio.h : main header file for the MYRADIO application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10.  
  11. //////////////////////
  12. // MY CODE STARTS HERE
  13. //////////////////////
  14.  
  15. #include "\vcProg\DLL\TegoSND.H"
  16.  
  17. ////////////////////
  18. // MY CODE ENDS HERE
  19. ////////////////////
  20.  
  21.  
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CMyradioApp:
  25. // See myradio.cpp for the implementation of this class
  26. //
  27.  
  28. class CMyradioApp : public CWinApp
  29. {
  30. public:
  31.     CMyradioApp();
  32.  
  33. // Overrides
  34.     virtual BOOL InitInstance();
  35.  
  36. // Implementation
  37.  
  38.     //{{AFX_MSG(CMyradioApp)
  39.     afx_msg void OnAppAbout();
  40.         // NOTE - the ClassWizard will add and remove member functions here.
  41.         //    DO NOT EDIT what you see in these blocks of generated code !
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.