mirror of
https://github.com/gligli/nulldc-360.git
synced 2025-04-02 11:11:56 -04:00
17 lines
No EOL
363 B
C++
17 lines
No EOL
363 B
C++
#pragma once
|
|
#include "FT0.h"
|
|
|
|
namespace XInput
|
|
{
|
|
|
|
// Returns false if there's an xinput error - we should hot-unplug
|
|
bool Read(int XPadPlayer, u32 deviceType, EmulatedDevices::FT0::SStatus* status);
|
|
|
|
// Returns true if the pad is ready to go
|
|
bool IsConnected(int XPadPlayer);
|
|
|
|
void StopRumble(int XPadPlayer);
|
|
|
|
void VibrationThread(void* _status);
|
|
|
|
} //namespace
|