From 0bf3dfda036f1da0cb26e1f266ea500fbe74f872 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sat, 3 Jul 2010 08:04:10 +0000 Subject: New Wiimote Plugin: Added real wiimote support.(only tested on Windows, still a few probs: after refresh alt+F{5..8} x2 is needed) New Wiimote/GCPad: Re-merged Keyboard+Mouse for easier kb+mouse configuration, like before.(DirectInput doesn't support individual kb/mice anymore like I thought it did) Fixed some bugs and maybe leaks in GUI.(got rid of evil dynamic_cast) Renamed stuff from DirectInput to DInput, cause it's shorter and rhymes with XInput, I guess. (I remembered eol-style native, shuffle lost his job :P) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5822 8ced0084-cf51-0410-be5f-012b33b47a6e --- .../ControllerInterface/DirectInput/DirectInput.h | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInput.h (limited to 'Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInput.h') diff --git a/Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInput.h b/Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInput.h deleted file mode 100644 index 9f4a045a55..0000000000 --- a/Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInput.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef _CIFACE_DIRECTINPUT_H_ -#define _CIFACE_DIRECTINPUT_H_ - -#include "../ControllerInterface.h" - -#define DIRECTINPUT_VERSION 0x0800 -#define WIN32_LEAN_AND_MEAN -#define NOMINMAX -#include -#include - -#include - -namespace ciface -{ -namespace DirectInput -{ - -//BOOL CALLBACK DIEnumEffectsCallback(LPCDIEFFECTINFO pdei, LPVOID pvRef); -BOOL CALLBACK DIEnumDeviceObjectsCallback(LPCDIDEVICEOBJECTINSTANCE lpddoi, LPVOID pvRef); -BOOL CALLBACK DIEnumDevicesCallback(LPCDIDEVICEINSTANCE lpddi, LPVOID pvRef); -std::string GetDeviceName(const LPDIRECTINPUTDEVICE8 device); - -void Init( std::vector& devices/*, HWND hwnd*/ ); - -} -} - -#endif -- cgit v1.2.3