mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-01 16:13:23 +00:00
Move module in correct path
This commit is contained in:
parent
7ae2a8840b
commit
0f9f787a55
@ -1,24 +1,18 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
logs::channel libmedi("libmedi", logs::level::notice);
|
||||
|
||||
s32 cellMediatorCreateContext()
|
||||
s32 cellMediatorCloseContext()
|
||||
{
|
||||
libmedi.todo("cellMediatorCreateContext");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorGetSignatureLength()
|
||||
s32 cellMediatorCreateContext()
|
||||
{
|
||||
libmedi.todo("cellMediatorGetSignatureLength");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorGetUserInfo()
|
||||
{
|
||||
libmedi.todo("cellMediatorGetUserInfo");
|
||||
libmedi.todo("cellMediatorCreateContext");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
@ -28,33 +22,15 @@ s32 cellMediatorFlushCache()
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorSign()
|
||||
{
|
||||
libmedi.todo("cellMediatorSign");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorPostReports()
|
||||
{
|
||||
libmedi.todo("cellMediatorPostReports");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorGetProviderUrl()
|
||||
{
|
||||
libmedi.todo("cellMediatorGetProviderUrl");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorReliablePostReports()
|
||||
s32 cellMediatorGetSignatureLength()
|
||||
{
|
||||
libmedi.todo("cellMediatorReliablePostReports");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorCloseContext()
|
||||
{
|
||||
libmedi.todo("cellMediatorCloseContext");
|
||||
libmedi.todo("cellMediatorGetSignatureLength");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
@ -64,17 +40,41 @@ s32 cellMediatorGetStatus()
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorGetUserInfo()
|
||||
{
|
||||
libmedi.todo("cellMediatorGetUserInfo");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorPostReports()
|
||||
{
|
||||
libmedi.todo("cellMediatorPostReports");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorReliablePostReports()
|
||||
{
|
||||
libmedi.todo("cellMediatorReliablePostReports");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellMediatorSign()
|
||||
{
|
||||
libmedi.todo("cellMediatorSign");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
|
||||
DECLARE(ppu_module_manager::libmedi)("libmedi", []()
|
||||
{
|
||||
REG_FUNC(libmedi, cellMediatorCreateContext);
|
||||
REG_FUNC(libmedi, cellMediatorGetSignatureLength);
|
||||
REG_FUNC(libmedi, cellMediatorGetUserInfo);
|
||||
REG_FUNC(libmedi, cellMediatorFlushCache);
|
||||
REG_FUNC(libmedi, cellMediatorSign);
|
||||
REG_FUNC(libmedi, cellMediatorPostReports);
|
||||
REG_FUNC(libmedi, cellMediatorGetProviderUrl);
|
||||
REG_FUNC(libmedi, cellMediatorReliablePostReports);
|
||||
REG_FUNC(libmedi, cellMediatorCloseContext);
|
||||
REG_FUNC(libmedi, cellMediatorCreateContext);
|
||||
REG_FUNC(libmedi, cellMediatorFlushCache);
|
||||
REG_FUNC(libmedi, cellMediatorGetProviderUrl);
|
||||
REG_FUNC(libmedi, cellMediatorGetSignatureLength);
|
||||
REG_FUNC(libmedi, cellMediatorGetStatus);
|
||||
REG_FUNC(libmedi, cellMediatorGetUserInfo);
|
||||
REG_FUNC(libmedi, cellMediatorPostReports);
|
||||
REG_FUNC(libmedi, cellMediatorReliablePostReports);
|
||||
REG_FUNC(libmedi, cellMediatorSign);
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user