rpcsx/rpcs3/Emu/SysCalls/Modules/cellKey2char.cpp
2015-02-20 16:58:40 +03:00

58 lines
1.1 KiB
C++

#include "stdafx.h"
#if 0
void cellKey2char_init();
Module cellKey2char(0x0021, cellKey2char_init);
// Return Codes
enum
{
CELL_K2C_OK = 0x00000000,
CELL_K2C_ERROR_FATAL = 0x80121301,
CELL_K2C_ERROR_INVALID_HANDLE = 0x80121302,
CELL_K2C_ERROR_INVALID_PARAMETER = 0x80121303,
CELL_K2C_ERROR_ALREADY_INITIALIZED = 0x80121304,
CELL_K2C_ERROR_UNINITIALIZED = 0x80121305,
CELL_K2C_ERROR_OTHER = 0x80121306,
};
int cellKey2CharOpen()
{
UNIMPLEMENTED_FUNC(cellKey2char);
return CELL_OK;
}
int cellKey2CharClose()
{
UNIMPLEMENTED_FUNC(cellKey2char);
return CELL_OK;
}
int cellKey2CharGetChar()
{
UNIMPLEMENTED_FUNC(cellKey2char);
return CELL_OK;
}
int cellKey2CharSetMode()
{
UNIMPLEMENTED_FUNC(cellKey2char);
return CELL_OK;
}
int cellKey2CharSetArrangement()
{
UNIMPLEMENTED_FUNC(cellKey2char);
return CELL_OK;
}
void cellKey2char_init()
{
REG_FUNC(cellKey2char, cellKey2CharOpen);
REG_FUNC(cellKey2char, cellKey2CharClose);
REG_FUNC(cellKey2char, cellKey2CharGetChar);
REG_FUNC(cellKey2char, cellKey2CharSetMode);
REG_FUNC(cellKey2char, cellKey2CharSetArrangement);
}
#endif