rpcsx/rpcs3/Emu/SysCalls/Modules/cellVpost.cpp
Nekotekina 9351e50f63 Minor changes, some bugs fixed
cellVdec headers, cellFsAioRead review, sync stuff review, cellAdec and
cellVpost
2014-02-20 06:16:17 +04:00

46 lines
825 B
C++

#include "stdafx.h"
#include "Emu/SysCalls/SysCalls.h"
#include "Emu/SysCalls/SC_FUNC.h"
#include "cellVpost.h"
void cellVpost_init();
Module cellVpost(0x0008, cellVpost_init);
int cellVpostQueryAttr()
{
UNIMPLEMENTED_FUNC(cellVpost);
return CELL_OK;
}
int cellVpostOpen()
{
UNIMPLEMENTED_FUNC(cellVpost);
return CELL_OK;
}
int cellVpostOpenEx()
{
UNIMPLEMENTED_FUNC(cellVpost);
return CELL_OK;
}
int cellVpostClose()
{
UNIMPLEMENTED_FUNC(cellVpost);
return CELL_OK;
}
int cellVpostExec()
{
UNIMPLEMENTED_FUNC(cellVpost);
return CELL_OK;
}
void cellVpost_init()
{
cellVpost.AddFunc(0x95e788c3, cellVpostQueryAttr);
cellVpost.AddFunc(0xcd33f3e2, cellVpostOpen);
cellVpost.AddFunc(0x40524325, cellVpostOpenEx);
cellVpost.AddFunc(0x10ef39f6, cellVpostClose);
cellVpost.AddFunc(0xabb8cc3d, cellVpostExec);
}