home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Tool Box
/
SIMS_2.iso
/
vb_code1
/
ole_vbx1
/
testvbx.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-01-25
|
2KB
|
58 lines
// testvbx.h : main header file for the TESTVBX application
//
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
/////////////////////////////////////////////////////////////////////////////
// CTestvbxApp:
// See testvbx.cpp for the implementation of this class
//
class CTestvbxApp : public CWinApp
{
private:
HMODULE hOLVBX;
public:
CTestvbxApp();
// Overrides
virtual BOOL InitInstance();
virtual int ExitInstance();
// Implementation
//{{AFX_MSG(CTestvbxApp)
afx_msg void OnAppAbout();
// 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_OL_ADDNODE;
extern UINT NEAR VBN_OL_CHANGENODE;
extern UINT NEAR VBN_ADDNODE;
extern UINT NEAR VBN_CHANGENODE;
extern UINT NEAR VBN_INSERTNODE;
extern UINT NEAR VBN_CHANGESELECTION;
extern UINT NEAR VBN_DELETENODE;
extern UINT NEAR VBN_INDENTNODE;
extern UINT NEAR VBN_KILLFOCUS;
extern UINT NEAR VBN_LEFTBUTTONCLICK;
extern UINT NEAR VBN_MIDDLEBUTTONCLICK;
extern UINT NEAR VBN_RIGHTBUTTONCLICK;
extern UINT NEAR VBN_SETFOCUS;
extern UINT NEAR VBN_VERTICALSCROLL;
//}}AFX_VBX_REGISTER
/////////////////////////////////////////////////////////////////////////////