mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
Buildfix for real!
This commit is contained in:
parent
85f25ded4c
commit
9ecfb5e75d
@ -26,9 +26,12 @@ WiimoteScanner::WiimoteScanner()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WiimoteScanner::~WiimoteScanner()
|
||||||
|
{}
|
||||||
|
|
||||||
std::vector<Wiimote*> WiimoteScanner::FindWiimotes(size_t max_wiimotes)
|
std::vector<Wiimote*> WiimoteScanner::FindWiimotes(size_t max_wiimotes)
|
||||||
{
|
{
|
||||||
return std::vector<Wiimote*>()
|
return std::vector<Wiimote*>();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool WiimoteScanner::IsReady() const
|
bool WiimoteScanner::IsReady() const
|
||||||
@ -46,17 +49,17 @@ void Wiimote::Disconnect()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Wiimote::IsOpen() const
|
bool Wiimote::IsConnected() const
|
||||||
{
|
{
|
||||||
return IsConnected();
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
int Wiimote::IORead(unsigned char* buf)
|
int Wiimote::Read(const u8* buf)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int Wiimote::IOWrite(unsigned char* buf, int len)
|
int Wiimote::Write(const u8* buf, int len)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -73,8 +73,6 @@ HINSTANCE bthprops_lib = NULL;
|
|||||||
|
|
||||||
static int initialized = 0;
|
static int initialized = 0;
|
||||||
|
|
||||||
int PairUp(bool unpair = false);
|
|
||||||
|
|
||||||
inline void init_lib()
|
inline void init_lib()
|
||||||
{
|
{
|
||||||
if (!initialized)
|
if (!initialized)
|
||||||
@ -129,6 +127,8 @@ inline void init_lib()
|
|||||||
namespace WiimoteReal
|
namespace WiimoteReal
|
||||||
{
|
{
|
||||||
|
|
||||||
|
int PairUp(bool unpair = false);
|
||||||
|
|
||||||
WiimoteScanner::WiimoteScanner()
|
WiimoteScanner::WiimoteScanner()
|
||||||
{
|
{
|
||||||
init_lib();
|
init_lib();
|
||||||
|
Loading…
Reference in New Issue
Block a user