mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
split rpcs3 and hle libraries
merge rpcs3 utilities
This commit is contained in:
parent
b33e2662b6
commit
62ad27d1e2
1233 changed files with 7004 additions and 3819 deletions
99
ps3fw/cellDtcpIpUtility.cpp
Normal file
99
ps3fw/cellDtcpIpUtility.cpp
Normal file
|
|
@ -0,0 +1,99 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
LOG_CHANNEL(cellDtcpIpUtility);
|
||||
|
||||
error_code cellDtcpIpRead()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpFinalize()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpActivate()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpOpen()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpCheckActivation()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpInitialize()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpGetDecryptedData()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpStopSequence()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpSeek()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpStartSequence()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpSetEncryptedData()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpClose()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellDtcpIpSuspendActivationForDebug()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::cellDtcpIpUtility)("cellDtcpIpUtility", []()
|
||||
{
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpRead);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpFinalize);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpActivate);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpOpen);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpCheckActivation);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpInitialize);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpGetDecryptedData);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpStopSequence);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpSeek);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpStartSequence);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpSetEncryptedData);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpClose);
|
||||
REG_FUNC(cellDtcpIpUtility, cellDtcpIpSuspendActivationForDebug);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue