37 lines
645 B
C
37 lines
645 B
C
|
//
|
|||
|
// <20>Q<EFBFBD>[<5B><><EFBFBD>I<EFBFBD>v<EFBFBD>V<EFBFBD><56><EFBFBD><EFBFBD><EFBFBD>_<EFBFBD>C<EFBFBD>A<EFBFBD><41><EFBFBD>O<EFBFBD>N<EFBFBD><4E><EFBFBD>X
|
|||
|
//
|
|||
|
#ifndef __CGAMEOPTIONDLG_INCLUDED__
|
|||
|
#define __CGAMEOPTIONDLG_INCLUDED__
|
|||
|
|
|||
|
#define WIN32_LEAN_AND_MEAN
|
|||
|
#include <windows.h>
|
|||
|
#include <string>
|
|||
|
using namespace std;
|
|||
|
|
|||
|
#include "Wnd.h"
|
|||
|
#include "Config.h"
|
|||
|
|
|||
|
class CGameOptionDlg : public CWnd
|
|||
|
{
|
|||
|
public:
|
|||
|
// Override from CWnd
|
|||
|
INT DoModal( HWND hWndParent );
|
|||
|
|
|||
|
protected:
|
|||
|
void OnInitialMember();
|
|||
|
|
|||
|
// Message map
|
|||
|
DLG_MESSAGE_MAP()
|
|||
|
DLGMSG OnInitDialog( DLGMSGPARAM );
|
|||
|
DLGCMD OnOK( DLGCMDPARAM );
|
|||
|
DLGCMD OnCancel( DLGCMDPARAM );
|
|||
|
DLGCMD OnDefault( DLGCMDPARAM );
|
|||
|
DLGCMD OnNotSave( DLGCMDPARAM );
|
|||
|
//
|
|||
|
private:
|
|||
|
};
|
|||
|
|
|||
|
#endif // !__CGAMEOPTIONDLG_INCLUDED__
|
|||
|
|