Some functions added

This commit is contained in:
Nekotekina 2015-01-30 20:19:11 +03:00
parent 6cab4d7100
commit bdd458d2ae
10 changed files with 2946 additions and 174 deletions

View file

@ -2,8 +2,67 @@
#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<void(SceNpServiceState state, vm::psv::ptr<void> userdata)> SceNpServiceStateCallback;
s32 sceNpInit(vm::psv::ptr<const SceNpCommunicationConfig> commConf, vm::psv::ptr<SceNpOptParam> opt)
{
throw __FUNCTION__;
}
s32 sceNpTerm(ARMv7Context&)
{
throw __FUNCTION__;
}
s32 sceNpCheckCallback()
{
throw __FUNCTION__;
}
s32 sceNpGetServiceState(vm::psv::ptr<SceNpServiceState> state)
{
throw __FUNCTION__;
}
s32 sceNpRegisterServiceStateCallback(SceNpServiceStateCallback callback, vm::psv::ptr<void> userdata)
{
throw __FUNCTION__;
}
s32 sceNpUnregisterServiceStateCallback()
{
throw __FUNCTION__;
}
s32 sceNpManagerGetNpId(vm::psv::ptr<SceNpId> npId)
{
throw __FUNCTION__;
}
s32 sceNpManagerGetAccountRegion(vm::psv::ptr<SceNpCountryCode> countryCode, vm::psv::ptr<s32> languageCode)
{
throw __FUNCTION__;
}
s32 sceNpManagerGetContentRatingFlag(vm::psv::ptr<s32> isRestricted, vm::psv::ptr<s32> age)
{
throw __FUNCTION__;
}
s32 sceNpManagerGetChatRestrictionFlag(vm::psv::ptr<s32> isRestricted)
{
throw __FUNCTION__;
}
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceNpManager, #name, name)
psv_log_base sceNpManager("SceNpManager", []()
@ -12,14 +71,14 @@ psv_log_base sceNpManager("SceNpManager", []()
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);
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);
});