home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch06 / sayhello / sayhello.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-16  |  1023 b   |  46 lines

  1. // sayhello.h : main header file for the SAYHELLO 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. // MY CODE STARTS HERE
  12. //////////////////////
  13.  
  14. #include "c:\vcProg\DLL\TegoSND.H"
  15.         
  16. ////////////////////
  17. // MY CODE ENDS HERE
  18. ////////////////////
  19.  
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CSayhelloApp:
  23. // See sayhello.cpp for the implementation of this class
  24. //
  25.  
  26. class CSayhelloApp : public CWinApp
  27. {
  28. public:
  29.     CSayhelloApp();
  30.  
  31. // Overrides
  32.     virtual BOOL InitInstance();
  33.  
  34. // Implementation
  35.  
  36.     //{{AFX_MSG(CSayhelloApp)
  37.     afx_msg void OnAppAbout();
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code !
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46.