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.
32 lines
780 B
32 lines
780 B
/************************************************************************
|
|
* *
|
|
* CHpjFrame.H *
|
|
* *
|
|
* Copyright (C) Microsoft Corporation 1993-1995 *
|
|
* All Rights reserved. *
|
|
* *
|
|
************************************************************************/
|
|
|
|
#ifndef __HPJ_FRAME__
|
|
#define __HPJ_FRAME__
|
|
|
|
#ifndef __LOG_FRAME__
|
|
#include "logframe.h"
|
|
#endif // __LOG_FRAME__
|
|
|
|
class CHpjFrame : public CLogFrame
|
|
{
|
|
DECLARE_DYNCREATE(CHpjFrame)
|
|
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CHpjFrame)
|
|
afx_msg void OnMDIActivate(BOOL bActivate, CWnd* pActivateWnd, CWnd* pDeactivateWnd);
|
|
afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif
|