mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-08 07:55:35 +00:00
cellOskDialog, cellPhoto(Decode|Export|Import)
This commit is contained in:
parent
7361b4e079
commit
2eaf5cdc01
9 changed files with 284 additions and 53 deletions
|
|
@ -1,8 +1,8 @@
|
|||
#include "stdafx.h"
|
||||
#if 0
|
||||
#include "Emu/Memory/Memory.h"
|
||||
#include "Emu/SysCalls/Modules.h"
|
||||
|
||||
void cellPhotoImport_init();
|
||||
Module cellPhotoImport(0xf02b, cellPhotoImport_init);
|
||||
extern Module cellPhotoImportUtil;
|
||||
|
||||
// Return Codes
|
||||
enum
|
||||
|
|
@ -41,21 +41,20 @@ struct CellPhotoImportSetParam
|
|||
};
|
||||
|
||||
// Functions
|
||||
int _cellPhotoImport()
|
||||
s32 cellPhotoImport()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellPhotoImport);
|
||||
UNIMPLEMENTED_FUNC(cellPhotoImportUtil);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
int _cellPhotoImport2()
|
||||
s32 cellPhotoImport2()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellPhotoImport);
|
||||
UNIMPLEMENTED_FUNC(cellPhotoImportUtil);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
void cellPhotoImport_init()
|
||||
Module cellPhotoImportUtil("cellPhotoImport", []()
|
||||
{
|
||||
REG_FUNC(cellPhotoImport, _cellPhotoImport);
|
||||
REG_FUNC(cellPhotoImport, _cellPhotoImport2);
|
||||
}
|
||||
#endif
|
||||
REG_FUNC(cellPhotoImportUtil, cellPhotoImport);
|
||||
REG_FUNC(cellPhotoImportUtil, cellPhotoImport2);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue