thug/Code/Sys/SIO/XBox/p_keyboard.cpp
2016-02-14 08:39:12 +11:00

116 lines
4.2 KiB
C++

/*****************************************************************************
** **
** Neversoft Entertainment **
** **
** Copyright (C) 1999 - All Rights Reserved **
** **
******************************************************************************
** **
** Project: SYS Library **
** **
** Module: SYS (SYS_) **
** **
** File name: keyboard.cpp **
** **
** Created: 03/08/2001 - gj **
** **
** Description: USB Keyboard interface **
** **
*****************************************************************************/
/*****************************************************************************
** Includes **
*****************************************************************************/
#include <core/defines.h>
#include <sys/sio/keyboard.h>
/*****************************************************************************
** DBG Information **
*****************************************************************************/
namespace SIO
{
/*****************************************************************************
** Externals **
*****************************************************************************/
/*****************************************************************************
** Private Types **
*****************************************************************************/
/*****************************************************************************
** Private Data **
*****************************************************************************/
/*****************************************************************************
** Public Data **
*****************************************************************************/
/*****************************************************************************
** Private Prototypes **
*****************************************************************************/
/*****************************************************************************
** Private Functions **
*****************************************************************************/
/*****************************************************************************
** Public Functions **
*****************************************************************************/
/******************************************************************/
/* */
/* */
/******************************************************************/
int KeyboardInit(void)
{
return 0;
}
/******************************************************************/
/* */
/* */
/******************************************************************/
int KeyboardDeinit(void)
{
return 0;
}
/******************************************************************/
/* */
/* */
/******************************************************************/
int KeyboardRead( char* makes )
{
return 0;
}
/******************************************************************/
/* */
/* */
/******************************************************************/
void KeyboardClear( void )
{
}
/******************************************************************/
/* */
/* */
/******************************************************************/
} // namespace SIO