mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-06 08:40:28 +01:00
* 41 new dummy modules created.
NOTE: I have detached the previous 4 dummy modules of my last commit
(1a85ccbbf4) from the project since they will consume space of the
executable, and compilation time and don't provide anything useful yet,
the same applies to this commit. The only reason to provide this dummy
modules is to avoid that developers have to spend too much time on
creating the template of the module before implementing functions. If
you want to implement a function of any of these modules, add the
corresponding file to the project first.
37 lines
874 B
C++
37 lines
874 B
C++
#include "stdafx.h"
|
|
#include "Emu/SysCalls/SysCalls.h"
|
|
#include "Emu/SysCalls/SC_FUNC.h"
|
|
|
|
void cellPhotoImport_init();
|
|
Module cellPhotoImport(0xf02b, cellPhotoImport_init);
|
|
|
|
// Return Codes
|
|
enum
|
|
{
|
|
CELL_PHOTO_IMPORT_RET_OK = 0,
|
|
CELL_PHOTO_IMPORT_RET_CANCEL = 1,
|
|
CELL_PHOTO_IMPORT_ERROR_BUSY = 0x8002c701,
|
|
CELL_PHOTO_IMPORT_ERROR_INTERNAL = 0x8002c702,
|
|
CELL_PHOTO_IMPORT_ERROR_PARAM = 0x8002c703,
|
|
CELL_PHOTO_IMPORT_ERROR_ACCESS_ERROR = 0x8002c704,
|
|
CELL_PHOTO_IMPORT_ERROR_COPY = 0x8002c705,
|
|
CELL_PHOTO_IMPORT_ERROR_INITIALIZE = 0x8002c706,
|
|
};
|
|
|
|
int _cellPhotoImport()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellPhotoImport);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int _cellPhotoImport2()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellPhotoImport);
|
|
return CELL_OK;
|
|
}
|
|
|
|
void cellPhotoImport_init()
|
|
{
|
|
cellPhotoImport.AddFunc(0x0783bce0, _cellPhotoImport);
|
|
cellPhotoImport.AddFunc(0x1ab8df55, _cellPhotoImport2);
|
|
} |