#include "stdafx.h" #include "Emu/System.h" #include "Emu/PSP2/ARMv7Module.h" #include "scePhotoExport.h" logs::channel scePhotoExport("scePhotoExport"); s32 scePhotoExportFromData( vm::cptr photodata, s32 photodataSize, vm::cptr param, vm::ptr workMemory, vm::ptr cancelFunc, vm::ptr userdata, vm::ptr exportedPath, s32 exportedPathLength) { fmt::throw_exception("Unimplemented" HERE); } s32 scePhotoExportFromFile( vm::cptr photodataPath, vm::cptr param, vm::ptr workMemory, vm::ptr cancelFunc, vm::ptr userdata, vm::ptr exportedPath, s32 exportedPathLength) { fmt::throw_exception("Unimplemented" HERE); } #define REG_FUNC(nid, name) REG_FNID(libScePhotoExport, nid, name) DECLARE(arm_module_manager::ScePhotoExport)("libScePhotoExport", []() { REG_FUNC(0x70512321, scePhotoExportFromData); REG_FUNC(0x84FD9FC5, scePhotoExportFromFile); });