www.pudn.com > 3D_Tank.rar > DXInput.h


////////////////////////////////////////////////////////////////// 
//																// 
//	使用这个类的项目应该添加头文件dinput.h 和库文件 dinput8.lib // 
//																// 
////////////////////////////////////////////////////////////////// 
 
#ifndef __DXINPUT_H__ 
#define __DXINPUT_H__ 
 
namespace DX9 
{ 
	class CDXInput 
	{ 
	public: 
		CDXInput(); 
		BOOL InitDevices(HINSTANCE hInstance, HWND hwnd); 
		BOOL SetKeyboardCooperativeLevel(DWORD dwFlags); 
		BOOL SetMouseCooperativeLevel(DWORD dwFlags); 
		BOOL SetJoystickCooperativeLevel(DWORD dwFlags, UINT nNumber = 1); 
	private: 
        IDirectInput8 *devInput;				 
		IDirectInputDevice8 *devKeyboard; 
		IDirectInputDevice8 *devMouse; 
		IDirectInputDevice8 *devJoystick[2]; 
	}; 
 
} 
 
#endif