home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip Hitware 3
/
Chip_Hitware_Vol_03.iso
/
chiphit3
/
tools
/
addon
/
truedic
/
vc
/
trdedic.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-04-30
|
1KB
|
50 lines
//-------------------------------------------------------------------------
// Truedic.H : Declares the class interfaces for the Truedic application.
//-------------------------------------------------------------------------
#ifndef __Truedic_H__
#define __Truedic_H__
//----------------------------------------------------------------------
// CTruedicApp:
// See Truedic.CPP for the code to the InitInstance() member function.
//----------------------------------------------------------------------
class CTruedicApp : public CWinApp
{
public:
virtual BOOL InitInstance();
};
//----------------------------------------------------------------------
// CMainDlgWindow : The main window for the Truedic application
//----------------------------------------------------------------------
class CMainDlgWindow : public CDialog
{
private:
public:
CMainDlgWindow();
protected:
CBitmapButton m_cBitEng;
CBitmapButton m_cBitDeu;
//{{AFX_MSG(CMainDlgWindow)
afx_msg void OnClose();
afx_msg void OnExit();
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
afx_msg void OnDeueng();
afx_msg void OnEngdeu();
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#endif // __Truedic_H__