mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 07:10:08 +01:00
18 lines
457 B
C++
18 lines
457 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
|
|
extern psv_log_base scePhotoExport;
|
|
|
|
#define REG_FUNC(nid, name) reg_psv_func(nid, &scePhotoExport, #name, name)
|
|
|
|
psv_log_base scePhotoExport("ScePhotoExport", []()
|
|
{
|
|
scePhotoExport.on_load = nullptr;
|
|
scePhotoExport.on_unload = nullptr;
|
|
scePhotoExport.on_stop = nullptr;
|
|
|
|
//REG_FUNC(0x70512321, scePhotoExportFromData);
|
|
//REG_FUNC(0x84FD9FC5, scePhotoExportFromFile);
|
|
});
|