#include "stdafx.h" #include "Emu/System.h" #include "Emu/ARMv7/PSVFuncList.h" #include "sceNpCommon.h" extern psv_log_base sceNpManager; struct SceNpOptParam { u32 optParamSize; }; typedef vm::psv::ptr userdata)> SceNpServiceStateCallback; s32 sceNpInit(vm::psv::ptr commConf, vm::psv::ptr opt) { throw __FUNCTION__; } s32 sceNpTerm(ARMv7Context&) { throw __FUNCTION__; } s32 sceNpCheckCallback() { throw __FUNCTION__; } s32 sceNpGetServiceState(vm::psv::ptr state) { throw __FUNCTION__; } s32 sceNpRegisterServiceStateCallback(SceNpServiceStateCallback callback, vm::psv::ptr userdata) { throw __FUNCTION__; } s32 sceNpUnregisterServiceStateCallback() { throw __FUNCTION__; } s32 sceNpManagerGetNpId(vm::psv::ptr npId) { throw __FUNCTION__; } s32 sceNpManagerGetAccountRegion(vm::psv::ptr countryCode, vm::psv::ptr languageCode) { throw __FUNCTION__; } s32 sceNpManagerGetContentRatingFlag(vm::psv::ptr isRestricted, vm::psv::ptr age) { throw __FUNCTION__; } s32 sceNpManagerGetChatRestrictionFlag(vm::psv::ptr isRestricted) { throw __FUNCTION__; } #define REG_FUNC(nid, name) reg_psv_func(nid, &sceNpManager, #name, name) psv_log_base sceNpManager("SceNpManager", []() { sceNpManager.on_load = nullptr; sceNpManager.on_unload = nullptr; sceNpManager.on_stop = nullptr; REG_FUNC(0x04D9F484, sceNpInit); REG_FUNC(0x19E40AE1, sceNpTerm); REG_FUNC(0x3C94B4B4, sceNpManagerGetNpId); REG_FUNC(0x54060DF6, sceNpGetServiceState); REG_FUNC(0x44239C35, sceNpRegisterServiceStateCallback); REG_FUNC(0xD9E6E56C, sceNpUnregisterServiceStateCallback); REG_FUNC(0x3B0AE9A9, sceNpCheckCallback); REG_FUNC(0xFE835967, sceNpManagerGetAccountRegion); REG_FUNC(0xAF0073B2, sceNpManagerGetContentRatingFlag); REG_FUNC(0x60C575B1, sceNpManagerGetChatRestrictionFlag); });