mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 23:41:19 +01:00
32 lines
671 B
C++
32 lines
671 B
C++
#ifndef _CIFACE_DINPUT_H_
|
|
#define _CIFACE_DINPUT_H_
|
|
|
|
#include "../Device.h"
|
|
|
|
#define DINPUT_SOURCE_NAME "DInput"
|
|
|
|
#define DIRECTINPUT_VERSION 0x0800
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define NOMINMAX
|
|
#include <Windows.h>
|
|
#include <dinput.h>
|
|
|
|
#include <list>
|
|
|
|
namespace ciface
|
|
{
|
|
namespace DInput
|
|
{
|
|
|
|
//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<Core::Device*>& devices, HWND hwnd);
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|