rpcsx/ps3fw/cellDtcpIpUtility.cpp

100 lines
2.1 KiB
C++
Raw Permalink Normal View History

2020-12-05 13:08:24 +01:00
#include "stdafx.h"
2019-03-24 09:29:49 +01:00
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(cellDtcpIpUtility);
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpRead()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpFinalize()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpActivate()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpOpen()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpCheckActivation()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpInitialize()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpGetDecryptedData()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpStopSequence()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpSeek()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpStartSequence()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpSetEncryptedData()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpClose()
2019-03-24 09:29:49 +01:00
{
UNIMPLEMENTED_FUNC(cellDtcpIpUtility);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code cellDtcpIpSuspendActivationForDebug()
2019-03-24 09:29:49 +01:00
{
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);
});