home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Power Pack / Visual_Basic4_Power_Pack.bin / vb4files / schedvbx / samples.z / VCSAMP1.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-05  |  1020 b   |  41 lines

  1. // vcsamp1.h : main header file for the VCSAMP1 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. // CVcsamp1App:
  12. // See vcsamp1.cpp for the implementation of this class
  13. //
  14.  
  15. class CVcsamp1App : public CWinApp
  16. {
  17. public:
  18.     CVcsamp1App();
  19.  
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.  
  23. // Implementation
  24.  
  25.     //{{AFX_MSG(CVcsamp1App)
  26.     afx_msg void OnAppAbout();
  27.         // NOTE - the ClassWizard will add and remove member functions here.
  28.         //    DO NOT EDIT what you see in these blocks of generated code !
  29.     //}}AFX_MSG
  30.     DECLARE_MESSAGE_MAP()
  31. };
  32.  
  33. /////////////////////////////////////////////////////////////////////////////
  34. // VB-Event extern declarations
  35.  
  36. //{{AFX_VBX_REGISTER()
  37.     extern UINT NEAR VBN_TBCHANGED;
  38. //}}AFX_VBX_REGISTER
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.