home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / FERRAMEN / VBXSTD12 / VBXDEMO.H_ / VBXDEMO.H
Encoding:
C/C++ Source or Header  |  1994-08-23  |  1.3 KB  |  52 lines

  1. // vbxdemo.h : main header file for the VBXDEMO 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. // CVbxdemoApp:
  12. // See vbxdemo.cpp for the implementation of this class
  13. //
  14.  
  15. class CVbxdemoApp : public CWinApp
  16. {
  17. public:
  18.     CVbxdemoApp();
  19.  
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.  
  23. // Implementation
  24.  
  25.     //{{AFX_MSG(CVbxdemoApp)
  26.         // NOTE - the ClassWizard will add and remove member functions here.
  27.         //    DO NOT EDIT what you see in these blocks of generated code !
  28.     //}}AFX_MSG
  29.     DECLARE_MESSAGE_MAP()
  30. };
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // VB-Event extern declarations
  34.  
  35. //{{AFX_VBX_REGISTER()
  36.     extern UINT NEAR VBN_DBLCLICK;
  37.     extern UINT NEAR VBN_KEYDOWN;
  38.     extern UINT NEAR VBN_UPDATE;
  39.     extern UINT NEAR VBN_SCROLLUP;
  40.     extern UINT NEAR VBN_SCROLLDN;
  41.     extern UINT NEAR VBN_SELCHANGE;
  42.     extern UINT NEAR VBN_CLICK;
  43.     extern UINT NEAR VBN_GOTFOCUS;
  44.     extern UINT NEAR VBN_FILEDROPPED;
  45. //}}AFX_VBX_REGISTER
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48. extern BOOL AreVBXHere();
  49. extern BOOL IsHlpHere( BOOL bShowWarning = FALSE );
  50. extern BOOL Exist( LPCSTR szName );
  51.         
  52.