forked from RPCS3/rpcs3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ae2a88
commit 0f9f787
Showing
3 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,80 @@ | ||
#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"); | ||
libmedi.todo("cellMediatorCreateContext"); | ||
return CELL_OK; | ||
} | ||
|
||
s32 cellMediatorGetUserInfo() | ||
s32 cellMediatorFlushCache() | ||
{ | ||
libmedi.todo("cellMediatorGetUserInfo"); | ||
libmedi.todo("cellMediatorFlushCache"); | ||
return CELL_OK; | ||
} | ||
|
||
s32 cellMediatorFlushCache() | ||
s32 cellMediatorGetProviderUrl() | ||
{ | ||
libmedi.todo("cellMediatorFlushCache"); | ||
libmedi.todo("cellMediatorGetProviderUrl"); | ||
return CELL_OK; | ||
} | ||
|
||
s32 cellMediatorSign() | ||
s32 cellMediatorGetSignatureLength() | ||
{ | ||
libmedi.todo("cellMediatorSign"); | ||
libmedi.todo("cellMediatorGetSignatureLength"); | ||
return CELL_OK; | ||
} | ||
|
||
s32 cellMediatorPostReports() | ||
s32 cellMediatorGetStatus() | ||
{ | ||
libmedi.todo("cellMediatorPostReports"); | ||
libmedi.todo("cellMediatorGetStatus"); | ||
return CELL_OK; | ||
} | ||
|
||
s32 cellMediatorGetProviderUrl() | ||
s32 cellMediatorGetUserInfo() | ||
{ | ||
libmedi.todo("cellMediatorGetProviderUrl"); | ||
libmedi.todo("cellMediatorGetUserInfo"); | ||
return CELL_OK; | ||
} | ||
|
||
s32 cellMediatorReliablePostReports() | ||
s32 cellMediatorPostReports() | ||
{ | ||
libmedi.todo("cellMediatorReliablePostReports"); | ||
libmedi.todo("cellMediatorPostReports"); | ||
return CELL_OK; | ||
} | ||
|
||
s32 cellMediatorCloseContext() | ||
s32 cellMediatorReliablePostReports() | ||
{ | ||
libmedi.todo("cellMediatorCloseContext"); | ||
libmedi.todo("cellMediatorReliablePostReports"); | ||
return CELL_OK; | ||
} | ||
|
||
s32 cellMediatorGetStatus() | ||
s32 cellMediatorSign() | ||
{ | ||
libmedi.todo("cellMediatorGetStatus"); | ||
libmedi.todo("cellMediatorSign"); | ||
return CELL_OK; | ||
} | ||
|
||
|
||
DECLARE(ppu_module_manager::libmedi)("libmedi", []() | ||
{ | ||
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, cellMediatorFlushCache); | ||
REG_FUNC(libmedi, cellMediatorSign); | ||
REG_FUNC(libmedi, cellMediatorPostReports); | ||
REG_FUNC(libmedi, cellMediatorGetProviderUrl); | ||
REG_FUNC(libmedi, cellMediatorReliablePostReports); | ||
REG_FUNC(libmedi, cellMediatorCloseContext); | ||
REG_FUNC(libmedi, cellMediatorGetStatus); | ||
REG_FUNC(libmedi, cellMediatorSign); | ||
}); |