home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch32 / my3d / my3d.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  1.1 KB  |  52 lines

  1. // my3d.h : main header file for the MY3D 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 "\vcProg\DLL\TegoSND.H"
  15.  
  16. ////////////////////
  17. // MY CODE ENDS HERE
  18. ////////////////////
  19.  
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMy3dApp:
  23. // See my3d.cpp for the implementation of this class
  24. //
  25.  
  26. class CMy3dApp : public CWinApp
  27. {
  28. public:
  29.     CMy3dApp();
  30.  
  31. // Overrides
  32.     virtual BOOL InitInstance();
  33.  
  34. // Implementation
  35.  
  36.     //{{AFX_MSG(CMy3dApp)
  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. // VB-Event extern declarations
  46.  
  47. //{{AFX_VBX_REGISTER()
  48.     extern UINT NEAR VBN_CLICK;
  49. //}}AFX_VBX_REGISTER
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52.