AxibugEmuOnline/References/VirtuaNESex_src_191105/JoyAxisDlg.h

45 lines
793 B
C
Raw Permalink Normal View History

2024-08-05 17:58:53 +08:00
//
// <20>W<EFBFBD><57><EFBFBD>C<EFBFBD>X<EFBFBD>e<EFBFBD>B<EFBFBD>b<EFBFBD>N<EFBFBD><4E><EFBFBD>ݒ<EFBFBD><DD92>_<EFBFBD>C<EFBFBD>A<EFBFBD><41><EFBFBD>O<EFBFBD>N<EFBFBD><4E><EFBFBD>X
//
#ifndef __CJOYAXISDLG_INCLUDED__
#define __CJOYAXISDLG_INCLUDED__
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <string>
using namespace std;
#include "Wnd.h"
#include "Config.h"
class CJoyAxisDlg : public CWnd
{
public:
// Override from CWnd
INT DoModal( HWND hWndParent );
protected:
void OnJoySettingSetup( INT nID );
// Message map
DLG_MESSAGE_MAP()
DLGMSG OnInitDialog( DLGMSGPARAM );
DLGMSG OnTimer( DLGMSGPARAM );
DLGNOTIFY OnCheckChange( DLGCMDPARAM );
DLGNOTIFY OnSelectChange( DLGCMDPARAM );
DLGCMD OnOK( DLGCMDPARAM );
DLGCMD OnCancel( DLGCMDPARAM );
DLGCMD OnDefault( DLGCMDPARAM );
//
INT m_JoySel;
INT m_TimerID;
WORD m_JoyAxisSetting[16];
private:
};
#endif // !__CJOYAXISDLG_INCLUDED__