home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch21 / mytool / mytool.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-26  |  1001 b   |  47 lines

  1. // mytool.h : main header file for the MYTOOL 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. // CMytoolApp:
  24. // See mytool.cpp for the implementation of this class
  25. //
  26.  
  27. class CMytoolApp : public CWinApp
  28. {
  29. public:
  30.     CMytoolApp();
  31.  
  32. // Overrides
  33.     virtual BOOL InitInstance();
  34.  
  35. // Implementation
  36.  
  37.     //{{AFX_MSG(CMytoolApp)
  38.     afx_msg void OnAppAbout();
  39.         // NOTE - the ClassWizard will add and remove member functions here.
  40.         //    DO NOT EDIT what you see in these blocks of generated code !
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. };
  44.  
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47.