2013-09-11 22:49:49 +02:00
|
|
|
#include "stdafx.h"
|
2015-09-18 00:41:14 +02:00
|
|
|
#include "Emu/System.h"
|
2013-09-11 22:49:49 +02:00
|
|
|
|
2015-09-18 00:41:14 +02:00
|
|
|
#include "Keyboard.h"
|
2013-09-11 22:49:49 +02:00
|
|
|
|
2015-09-18 00:41:14 +02:00
|
|
|
void KeyboardManager::Init(u32 max_connect)
|
2013-09-11 22:49:49 +02:00
|
|
|
{
|
2015-09-18 00:41:14 +02:00
|
|
|
m_keyboard_handler = Emu.GetCallbacks().get_kb_handler();
|
2013-09-11 22:49:49 +02:00
|
|
|
m_keyboard_handler->Init(max_connect);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KeyboardManager::Close()
|
|
|
|
|
{
|
2015-09-18 00:41:14 +02:00
|
|
|
m_keyboard_handler.reset();
|
2014-07-10 23:13:45 +02:00
|
|
|
}
|