mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11: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/System.h"
|
||||||
#include "Emu/Cell/PPUModule.h"
|
#include "Emu/Cell/PPUModule.h"
|
||||||
|
|
||||||
logs::channel libmedi("libmedi", logs::level::notice);
|
logs::channel libmedi("libmedi", logs::level::notice);
|
||||||
|
|
||||||
s32 cellMediatorCreateContext()
|
s32 cellMediatorCloseContext()
|
||||||
{
|
{
|
||||||
libmedi.todo("cellMediatorCreateContext");
|
libmedi.todo("cellMediatorCreateContext");
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellMediatorGetSignatureLength()
|
s32 cellMediatorCreateContext()
|
||||||
{
|
{
|
||||||
libmedi.todo("cellMediatorGetSignatureLength");
|
libmedi.todo("cellMediatorCreateContext");
|
||||||
return CELL_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 cellMediatorGetUserInfo()
|
|
||||||
{
|
|
||||||
libmedi.todo("cellMediatorGetUserInfo");
|
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -28,33 +22,15 @@ s32 cellMediatorFlushCache()
|
|||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellMediatorSign()
|
|
||||||
{
|
|
||||||
libmedi.todo("cellMediatorSign");
|
|
||||||
return CELL_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 cellMediatorPostReports()
|
|
||||||
{
|
|
||||||
libmedi.todo("cellMediatorPostReports");
|
|
||||||
return CELL_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 cellMediatorGetProviderUrl()
|
s32 cellMediatorGetProviderUrl()
|
||||||
{
|
{
|
||||||
libmedi.todo("cellMediatorGetProviderUrl");
|
libmedi.todo("cellMediatorGetProviderUrl");
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellMediatorReliablePostReports()
|
s32 cellMediatorGetSignatureLength()
|
||||||
{
|
{
|
||||||
libmedi.todo("cellMediatorReliablePostReports");
|
libmedi.todo("cellMediatorGetSignatureLength");
|
||||||
return CELL_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 cellMediatorCloseContext()
|
|
||||||
{
|
|
||||||
libmedi.todo("cellMediatorCloseContext");
|
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,17 +40,41 @@ s32 cellMediatorGetStatus()
|
|||||||
return CELL_OK;
|
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", []()
|
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, cellMediatorCloseContext);
|
||||||
|
REG_FUNC(libmedi, cellMediatorCreateContext);
|
||||||
|
REG_FUNC(libmedi, cellMediatorFlushCache);
|
||||||
|
REG_FUNC(libmedi, cellMediatorGetProviderUrl);
|
||||||
|
REG_FUNC(libmedi, cellMediatorGetSignatureLength);
|
||||||
REG_FUNC(libmedi, cellMediatorGetStatus);
|
REG_FUNC(libmedi, cellMediatorGetStatus);
|
||||||
|
REG_FUNC(libmedi, cellMediatorGetUserInfo);
|
||||||
|
REG_FUNC(libmedi, cellMediatorPostReports);
|
||||||
|
REG_FUNC(libmedi, cellMediatorReliablePostReports);
|
||||||
|
REG_FUNC(libmedi, cellMediatorSign);
|
||||||
});
|
});
|
Loading…
Reference in New Issue
Block a user