AxibugEmuOnline/References/VirtuaNESex_src_191105/MovieDlg.h

35 lines
544 B
C
Raw Normal View History

2024-08-05 17:58:53 +08:00
//
// <20><><EFBFBD>[<5B>r<EFBFBD>[<5B>_<EFBFBD>C<EFBFBD>A<EFBFBD><41><EFBFBD>O<EFBFBD>N<EFBFBD><4E><EFBFBD>X
//
#ifndef __CMOVIEDLG_INCLUDED__
#define __CMOVIEDLG_INCLUDED__
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <string>
using namespace std;
#include "Wnd.h"
#include "Config.h"
class CMovieDlg : public CWnd
{
public:
// Override from CWnd
INT DoModal( HWND hWndParent );
protected:
// Message map
DLG_MESSAGE_MAP()
DLGMSG OnInitDialog( DLGMSGPARAM );
DLGCMD OnOK( DLGCMDPARAM );
DLGCMD OnCancel( DLGCMDPARAM );
//
CCfgMovie m_ConfigSave;
private:
};
#endif // !__CMOVIEDLG_INCLUDED__