mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
438 B
22 lines
438 B
#ifndef __LOG_FRAME__
|
|
#define __LOG_FRAME__
|
|
|
|
class CLogFrame : public CMDIChildWnd
|
|
{
|
|
DECLARE_DYNCREATE(CLogFrame)
|
|
|
|
public:
|
|
static void Initialize();
|
|
static void Terminate();
|
|
|
|
protected:
|
|
void ActivateFrame(int nCmdShow);
|
|
void OnUpdateFrameMenu(BOOL bActive, CWnd* pActivateWnd, HMENU hMenuAlt);
|
|
|
|
//{{AFX_MSG(CLogFrame)
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif // __LOG_FRAME__
|