mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-06 21:00:21 +01:00
26 lines
570 B
C++
26 lines
570 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "InputCommon/ControllerInterface/Win32/Win32.h"
|
|
|
|
#include "InputCommon/ControllerInterface/DInput/DInput.h"
|
|
#include "InputCommon/ControllerInterface/XInput/XInput.h"
|
|
|
|
void ciface::Win32::Init()
|
|
{
|
|
// DInput::Init();
|
|
XInput::Init();
|
|
}
|
|
|
|
void ciface::Win32::PopulateDevices(void* hwnd)
|
|
{
|
|
DInput::PopulateDevices(static_cast<HWND>(hwnd));
|
|
XInput::PopulateDevices();
|
|
}
|
|
|
|
void ciface::Win32::DeInit()
|
|
{
|
|
// DInput::DeInit();
|
|
XInput::DeInit();
|
|
}
|