home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / ole_vbx1 / testvbx.h < prev    next >
C/C++ Source or Header  |  1994-01-25  |  2KB  |  58 lines

  1. // testvbx.h : main header file for the TESTVBX 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. // CTestvbxApp:
  12. // See testvbx.cpp for the implementation of this class
  13. //
  14.  
  15. class CTestvbxApp : public CWinApp
  16. {                   
  17. private:
  18.     HMODULE            hOLVBX;
  19.     
  20. public:
  21.     CTestvbxApp();
  22.  
  23. // Overrides
  24.     virtual BOOL    InitInstance();
  25.     virtual int        ExitInstance();
  26.  
  27. // Implementation
  28.  
  29.     //{{AFX_MSG(CTestvbxApp)
  30.     afx_msg void OnAppAbout();
  31.         // NOTE - the ClassWizard will add and remove member functions here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code !
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38. // VB-Event extern declarations
  39.  
  40. //{{AFX_VBX_REGISTER()
  41.     extern UINT NEAR VBN_OL_ADDNODE;
  42.     extern UINT NEAR VBN_OL_CHANGENODE;
  43.     extern UINT NEAR VBN_ADDNODE;
  44.     extern UINT NEAR VBN_CHANGENODE;
  45.     extern UINT NEAR VBN_INSERTNODE;
  46.     extern UINT NEAR VBN_CHANGESELECTION;
  47.     extern UINT NEAR VBN_DELETENODE;
  48.     extern UINT NEAR VBN_INDENTNODE;
  49.     extern UINT NEAR VBN_KILLFOCUS;
  50.     extern UINT NEAR VBN_LEFTBUTTONCLICK;
  51.     extern UINT NEAR VBN_MIDDLEBUTTONCLICK;
  52.     extern UINT NEAR VBN_RIGHTBUTTONCLICK;
  53.     extern UINT NEAR VBN_SETFOCUS;
  54.     extern UINT NEAR VBN_VERTICALSCROLL;
  55. //}}AFX_VBX_REGISTER
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58.