#include "stdafx.h" #include "Emu/System.h" #include "Emu/ARMv7/PSVFuncList.h" #include "scePhotoExport.h" s32 scePhotoExportFromData( vm::cptr photodata, s32 photodataSize, vm::cptr param, vm::ptr workMemory, vm::ptr cancelFunc, vm::ptr userdata, vm::ptr exportedPath, s32 exportedPathLength) { throw EXCEPTION(""); } s32 scePhotoExportFromFile( vm::cptr photodataPath, vm::cptr param, vm::ptr workMemory, vm::ptr cancelFunc, vm::ptr userdata, vm::ptr exportedPath, s32 exportedPathLength) { throw EXCEPTION(""); } #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; scePhotoExport.on_error = nullptr; REG_FUNC(0x70512321, scePhotoExportFromData); REG_FUNC(0x84FD9FC5, scePhotoExportFromFile); });