// -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- // // VBXDEMO.H // VBX Studio 2.0 // 18-jul-95 // ®HEXANET, COPYRIGHT HEXANET 1993-1995, ALL RIGHTS RESERVED // EMail: hnet@dialup.francenet.fr / CIS: 100333,27 // HexaNet SW - BP 385.16 - 75768 PARIS CDX 16 - FRANCE // // You can distribute this file as long as you distribute // the full VBX Studio package. // -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- // You can use this sample file as you want. // -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "resource.h" // main symbols ///////////////////////////////////////////////////////////////////////////// // CVbxdemoApp: // See vbxdemo.cpp for the implementation of this class // extern BOOL bHlpNotHere; class CVbxdemoApp : public CWinApp { public: CVbxdemoApp(); // Overrides virtual BOOL InitInstance(); virtual int ExitInstance(); // Implementation //{{AFX_MSG(CVbxdemoApp) // NOTE - the ClassWizard will add and remove member functions here. // DO NOT EDIT what you see in these blocks of generated code ! //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// // VB-Event extern declarations //{{AFX_VBX_REGISTER() extern UINT NEAR VBN_FILEDROPPED; extern UINT NEAR VBN_UPDATE; extern UINT NEAR VBN_SCROLLUP; extern UINT NEAR VBN_SCROLLDN; extern UINT NEAR VBN_SELCHANGE; extern UINT NEAR VBN_DBLCLICK; extern UINT NEAR VBN_CLICK; //}}AFX_VBX_REGISTER /////////////////////////////////////////////////////////////////////////////