rpcsx/rpcs3/Emu/SysCalls/Modules/sceNp.cpp

1742 lines
36 KiB
C++
Raw Normal View History

#include "stdafx.h"
#include "Emu/Memory/Memory.h"
#include "Emu/System.h"
#include "Emu/SysCalls/Modules.h"
2014-08-23 22:40:04 +02:00
2014-08-26 01:55:37 +02:00
#include "Emu/FS/VFS.h"
#include "Utilities/rFile.h"
#include "Emu/FS/vfsDir.h"
#include "Crypto/unedat.h"
#include "sceNp.h"
Module *sceNp = nullptr;
struct sceNpInternal
{
bool m_bSceNpInitialized;
bool m_bSceNp2Initialized;
bool m_bScoreInitialized;
sceNpInternal()
: m_bSceNpInitialized(false),
m_bSceNp2Initialized(false),
m_bScoreInitialized(false)
{
}
};
sceNpInternal sceNpInstance;
int sceNpInit(u32 mem_size, u32 mem_addr)
{
sceNp->Warning("sceNpInit(mem_size=0x%x, mem_addr=0x%x)", mem_size, mem_addr);
if (sceNpInstance.m_bSceNpInitialized)
return SCE_NP_ERROR_ALREADY_INITIALIZED;
sceNpInstance.m_bSceNpInitialized = true;
return CELL_OK;
}
int sceNp2Init(u32 mem_size, u32 mem_addr)
{
sceNp->Warning("sceNp2Init(mem_size=0x%x, mem_addr=0x%x)", mem_size, mem_addr);
if (sceNpInstance.m_bSceNp2Initialized)
return SCE_NP_ERROR_ALREADY_INITIALIZED;
sceNpInstance.m_bSceNp2Initialized = true;
return CELL_OK;
}
int sceNpTerm()
{
sceNp->Warning("sceNpTerm()");
if (!sceNpInstance.m_bSceNpInitialized)
return SCE_NP_ERROR_NOT_INITIALIZED;
sceNpInstance.m_bSceNpInitialized = false;
return CELL_OK;
}
int sceNp2Term()
{
sceNp->Warning("sceNp2Term()");
if (!sceNpInstance.m_bSceNp2Initialized)
return SCE_NP_ERROR_NOT_INITIALIZED;
sceNpInstance.m_bSceNp2Initialized = false;
return CELL_OK;
}
2014-09-04 19:32:20 +02:00
int npDrmIsAvailable(u32 k_licensee_addr, vm::ptr<const char> drm_path)
{
2014-09-04 19:32:20 +02:00
if (!Emu.GetVFS().ExistsFile(drm_path.get_ptr()))
2014-07-01 14:21:55 +02:00
{
2014-09-04 19:32:20 +02:00
sceNp->Warning("npDrmIsAvailable(): '%s' not found", drm_path.get_ptr());
2014-07-01 14:21:55 +02:00
return CELL_ENOENT;
}
std::string k_licensee_str = "0";
u8 k_licensee[0x10];
if (k_licensee_addr)
{
for (int i = 0; i < 0x10; i++)
{
2014-09-06 15:33:01 +02:00
k_licensee[i] = vm::read8(k_licensee_addr + i);
k_licensee_str += fmt::Format("%02x", k_licensee[i]);
}
}
2014-09-04 19:32:20 +02:00
sceNp->Warning("npDrmIsAvailable: Found DRM license file at %s", drm_path.get_ptr());
sceNp->Warning("npDrmIsAvailable: Using k_licensee 0x%s", k_licensee_str.c_str());
// Set the necessary file paths.
2014-09-04 19:32:20 +02:00
std::string drm_file_name = fmt::AfterLast(drm_path.get_ptr(), '/');
2014-08-05 16:36:16 +02:00
// TODO: Make more explicit what this actually does (currently it copies "XXXXXXXX" from drm_path (== "/dev_hdd0/game/XXXXXXXXX/*" assumed)
2014-09-04 19:32:20 +02:00
std::string titleID(&drm_path[15], 9);
// TODO: These shouldn't use current dir
2014-09-04 19:32:20 +02:00
std::string enc_drm_path = drm_path.get_ptr();
2014-08-05 16:36:16 +02:00
std::string dec_drm_path = "/dev_hdd1/" + titleID + "/" + drm_file_name;
std::string rap_path = "/dev_usb000/";
2014-09-04 19:32:20 +02:00
// Search dev_usb000 for a compatible RAP file.
2014-08-05 16:36:16 +02:00
vfsDir *raps_dir = new vfsDir(rap_path);
if (!raps_dir->IsOpened())
2014-09-04 19:32:20 +02:00
sceNp->Warning("npDrmIsAvailable: Can't find RAP file for DRM!");
else
{
const std::vector<DirEntryInfo> &entries = raps_dir->GetEntries();
2014-09-04 19:32:20 +02:00
for (auto &entry : entries)
{
2014-09-04 19:32:20 +02:00
if (entry.name.find(titleID) != std::string::npos)
{
2014-08-05 16:36:16 +02:00
rap_path += entry.name;
break;
}
}
}
// Create a new directory under dev_hdd1/titleID to hold the decrypted data.
// TODO: These shouldn't use current dir
std::string tmp_dir = "./dev_hdd1/" + titleID;
if (!rExists(tmp_dir))
rMkdir("./dev_hdd1/" + titleID);
// Decrypt this EDAT using the supplied k_licensee and matching RAP file.
2014-08-05 16:36:16 +02:00
std::string enc_drm_path_local, dec_drm_path_local, rap_path_local;
Emu.GetVFS().GetDevice(enc_drm_path, enc_drm_path_local);
Emu.GetVFS().GetDevice(dec_drm_path, dec_drm_path_local);
Emu.GetVFS().GetDevice(rap_path, rap_path_local);
2014-08-05 16:36:16 +02:00
DecryptEDAT(enc_drm_path_local, dec_drm_path_local, 8, rap_path_local, k_licensee, false);
return CELL_OK;
}
2014-09-04 19:32:20 +02:00
int sceNpDrmIsAvailable(u32 k_licensee_addr, vm::ptr<const char> drm_path)
2014-04-03 01:24:39 +02:00
{
2014-09-04 19:32:20 +02:00
sceNp->Warning("sceNpDrmIsAvailable(k_licensee_addr=0x%x, drm_path_addr=0x%x('%s'))", k_licensee_addr, drm_path.addr(), drm_path.get_ptr());
2014-08-13 21:29:38 +02:00
2014-09-04 19:32:20 +02:00
return npDrmIsAvailable(k_licensee_addr, drm_path);
}
2014-08-13 21:29:38 +02:00
2014-09-04 19:32:20 +02:00
int sceNpDrmIsAvailable2(u32 k_licensee_addr, vm::ptr<const char> drm_path)
{
sceNp->Warning("sceNpDrmIsAvailable2(k_licensee_addr=0x%x, drm_path_addr=0x%x('%s'))", k_licensee_addr, drm_path.addr(), drm_path.get_ptr());
2014-08-13 21:29:38 +02:00
2014-09-04 19:32:20 +02:00
return npDrmIsAvailable(k_licensee_addr, drm_path);
2014-04-03 01:24:39 +02:00
}
int sceNpDrmVerifyUpgradeLicense(u32 content_id_addr)
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
int sceNpDrmExecuteGamePurchase()
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
int sceNpDrmGetTimelimit(u32 drm_path_addr, vm::ptr<be_t<u64>> time_remain_usec)
2014-04-03 01:24:39 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-09-01 02:51:48 +02:00
int sceNpManagerGetStatus(vm::ptr<be_t<u32>> status)
{
2014-09-01 02:51:48 +02:00
sceNp->Log("sceNpManagerGetStatus(status_addr=0x%x)", status.addr());
if (!sceNpInstance.m_bSceNp2Initialized)
return SCE_NP_ERROR_NOT_INITIALIZED;
// TODO: Support different statuses
2014-09-01 02:51:48 +02:00
*status = SCE_NP_MANAGER_STATUS_OFFLINE;
return CELL_OK;
}
2014-07-27 19:30:25 +02:00
int sceNpManagerSubSignout()
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
int sceNpCommerceGetChildProductSkuInfo()
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
int sceNpBasicSendMessageGui()
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingGetResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetFriendListEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreRecordGameData()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetDataFlagAbort()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetMatchingInvitationEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetRankingByNpId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetTicket()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingQuickMatchGUI()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingGetConnectionInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupNpId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreRecordScore()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicAddPlayersHistory()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetAccountAge()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetPsHandle()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreWaitAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetSkuUserData()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicAddBlockListEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupUserProfileWithAvatarSizeAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetRankingByRangeAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClansRankingByClanIdAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreDestroyTitleCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetFriendPresenceByNpId2()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingGetCtxOpt()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingGetResultGUI()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetProductCategoryStart()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreSetPlayerCharacterId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingSetCtxOpt()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicAddFriend()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreSetTimeout()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClansRankingByClanId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingAcceptInvitationGUI()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetNumOfChildCategory()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreSanitizeCommentAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingDestroyCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpProfileAbortGui()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupUserProfileWithAvatarSize()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetMessageEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetMyLanguages()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetFriendPresenceByIndex()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreInit()
2014-07-27 19:30:25 +02:00
{
sceNp->Warning("sceNpScoreInit()");
if (sceNpInstance.m_bScoreInitialized)
return SCE_NP_COMMUNITY_ERROR_ALREADY_INITIALIZED;
sceNpInstance.m_bScoreInitialized = true;
2014-07-27 19:30:25 +02:00
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingSearchJoinRoomGUI()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingKickRoomMember()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingGetConnectionFromPeerAddress()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetCategoryDescription()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetAvatarUrl()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetSkuId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetGameData()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingCreateRoomGUI()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupAbortTransaction()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetRankingByNpIdAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicSetPresence()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetProductCategoryResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicRegisterContextSensitiveHandler()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClansMembersRankingByNpIdPcId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClansMembersRankingByNpIdPcIdAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicSendMessageAttachment()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerSubSignin()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCustomMenuRegisterActions()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingJoinRoomGUI()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicAbortGui()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingSetRoomInfoNoLimit()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetCachedInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClansMembersRankingByRangeAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetClanMessageEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingAddExtendedHandler()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerUnregisterCallback()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetTicketParam()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetMessageAttachmentEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupDestroyTitleCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupTitleStorageAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicSetPresenceDetails2()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupInit()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerSubSigninAbortGui()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingActivateConnection()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingCreateCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetFriendPresenceByIndex2()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicRecvMessageAttachmentLoad()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingCancelPeerNetInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetProductCategoryAbort()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingGetRoomInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceDestroyProductCategory()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClansMembersRankingByRange()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetCategoryName()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetContentRatingFlag()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreCreateTransactionCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingSetRoomInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupSetTimeout()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetNumOfChildProductSku()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetBlockListEntryCount()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingGetRoomMemberListLocal()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClanMemberGameData()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupPollAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingGetPeerNetInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetSkuPrice()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetCurrencyCode()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClansRankingByRangeAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreCensorCommentAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreCensorComment()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerRequestTicket()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicRecvMessageCustom()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
int _sceNpSysutilClientFree()
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerRequestTicket2()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupTerm()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupTitleSmallStorageAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingSendInvitationGUI()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceInitProductCategory()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceSetDataFlagFinish()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetMessageAttachmentEntryCount()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetDataFlagFinish()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetProductId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetCategoryImageURL()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCustomMenuRegisterExceptionList()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingTerminateConnection()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreTerm()
2014-07-27 19:30:25 +02:00
{
sceNp->Warning("sceNpScoreTerm()");
if (!sceNpInstance.m_bScoreInitialized)
return SCE_NP_COMMUNITY_ERROR_NOT_INITIALIZED;
sceNpInstance.m_bScoreInitialized = false;
2014-07-27 19:30:25 +02:00
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceSetDataFlagStart()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingGetLocalNetInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupTitleStorage()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetPlayersHistoryEntryCount()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetEntitlementById()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingSetRoomSearchFlag()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScorePollAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetSkuDescription()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetCustomInvitationEntryCount()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpDrmProcessExitSpawn()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingCreateCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicUnregisterHandler()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetCategoryId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceDoCheckoutFinishAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetMatchingInvitationEntryCount()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetCurrencyDecimals()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetFriendListEntryCount()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingGetRoomInfoNoLimit()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClansRankingByRange()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetCurrencyInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetAccountRegion()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicRecvMessageAttachment()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupAvatarImage()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetEntitlementIdList()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreCreateTitleCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetChildCategoryInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetPlayersHistoryEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicRegisterHandler()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicAddPlayersHistoryAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetNetworkTime()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetOnlineId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpDrmVerifyUpgradeLicense2()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicSetPresenceDetails()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClanMemberGameDataAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetClanMessageEntryCount()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupAvatarImageAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetRankingByNpIdPcId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetRankingByNpIdPcIdAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreDestroyTransactionCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingGetConnectionStatus()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupTitleSmallStorage()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetSkuImageURL()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupCreateTitleCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpProfileCallGui()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetProductCategoryFinish()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetDataFlagState()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetCustomInvitationEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingGetPeerNetInfoResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupNpIdAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpUtilCmpNpId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingKickRoomMemberWithOpt()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupWaitAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpFriendlistCustom()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingGrantOwnership()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetGameDataAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetDataFlagStart()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetBoardInfoAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClansMembersRankingByNpId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupUserProfile()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetEvent()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicMarkMessageAsUsed()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingGetRoomListLimitGUI()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceDestroyCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceDoCheckoutStartAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpDrmProcessExitSpawn2()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerRegisterCallback()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingGetConnectionFromNpId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetClansMembersRankingByNpIdAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupCreateTransactionCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetProductName()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetChatRestrictionFlag()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetCategoryInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicSendMessage()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetMessageEntryCount()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
int _sceNpSysutilClientMalloc()
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceGetSkuName()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreAbortTransaction()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingGetRoomSearchFlag()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpFriendlist()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreRecordScoreAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreSanitizeComment()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetBlockListEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetOnlineName()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetBoardInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpFriendlistAbortGui()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpUtilCmpNpIdInOrder()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreRecordGameDataAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpMatchingLeaveRoom()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCustomMenuActionSetActivation()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupDestroyTransactionCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpScoreGetRankingByRange()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerceCreateCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpSignalingDeactivateConnection()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpBasicGetFriendPresenceByNpId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpManagerGetNpId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpLookupUserProfileAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpUtilBandwidthTestShutdown()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpUtilBandwidthTestInitStart()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpUtilBandwidthTestGetStatus()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpUtilBandwidthTestAbort()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 13:15:28 +02:00
int sceNpSignalingDestroyCtx()
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-27 19:30:25 +02:00
void sceNp_init(Module *pxThis)
{
sceNp = pxThis;
sceNp->AddFunc(0xbd28fdbf, sceNpInit);
sceNp->AddFunc(0x41251f74, sceNp2Init);
sceNp->AddFunc(0x4885aa18, sceNpTerm);
sceNp->AddFunc(0xaadb7c12, sceNp2Term);
sceNp->AddFunc(0xad218faf, sceNpDrmIsAvailable);
sceNp->AddFunc(0xf042b14f, sceNpDrmIsAvailable2);
sceNp->AddFunc(0x2ecd48ed, sceNpDrmVerifyUpgradeLicense);
sceNp->AddFunc(0xbe0e3ee2, sceNpDrmVerifyUpgradeLicense2);
sceNp->AddFunc(0xf283c143, sceNpDrmExecuteGamePurchase);
sceNp->AddFunc(0xcf51864b, sceNpDrmGetTimelimit);
sceNp->AddFunc(0xa7bff757, sceNpManagerGetStatus);
2014-07-27 19:30:25 +02:00
sceNp->AddFunc(0x000e53cc, sceNpManagerSubSignout);
sceNp->AddFunc(0x01cd9cfd, sceNpCommerceGetChildProductSkuInfo);
sceNp->AddFunc(0x01fbbc9b, sceNpBasicSendMessageGui);
sceNp->AddFunc(0x03c741a7, sceNpMatchingGetResult);
sceNp->AddFunc(0x04372385, sceNpBasicGetFriendListEntry);
sceNp->AddFunc(0x04ca5e6a, sceNpScoreRecordGameData);
sceNp->AddFunc(0x0561448b, sceNpCommerceGetDataFlagAbort);
sceNp->AddFunc(0x05af1cb8, sceNpBasicGetMatchingInvitationEntry);
sceNp->AddFunc(0x05d65dff, sceNpScoreGetRankingByNpId);
sceNp->AddFunc(0x0968aa36, sceNpManagerGetTicket);
sceNp->AddFunc(0x14497465, sceNpMatchingQuickMatchGUI);
sceNp->AddFunc(0x155de760, sceNpSignalingGetConnectionInfo);
sceNp->AddFunc(0x166dcc11, sceNpLookupNpId);
sceNp->AddFunc(0x1672170e, sceNpScoreRecordScore);
sceNp->AddFunc(0x168a3117, sceNpBasicAddPlayersHistory);
sceNp->AddFunc(0x168fcece, sceNpManagerGetAccountAge);
sceNp->AddFunc(0x16f88a6f, sceNpManagerGetPsHandle);
sceNp->AddFunc(0x1a2704f7, sceNpScoreWaitAsync);
sceNp->AddFunc(0x1a3fcb69, sceNpCommerceGetSkuUserData);
sceNp->AddFunc(0x1ae8a549, sceNpBasicAddBlockListEntry);
sceNp->AddFunc(0x1fdb3ec2, sceNpLookupUserProfileWithAvatarSizeAsync);
sceNp->AddFunc(0x21206642, sceNpScoreGetRankingByRangeAsync);
sceNp->AddFunc(0x227f8763, sceNpScoreGetClansRankingByClanIdAsync);
sceNp->AddFunc(0x259113b8, sceNpScoreDestroyTitleCtx);
sceNp->AddFunc(0x260caedd, sceNpBasicGetFriendPresenceByNpId2);
sceNp->AddFunc(0x2687a127, sceNpSignalingGetCtxOpt);
sceNp->AddFunc(0x26b3bc94, sceNpMatchingGetResultGUI);
sceNp->AddFunc(0x26f33146, sceNpCommerceGetProductCategoryStart);
sceNp->AddFunc(0x2706eaa1, sceNpScoreSetPlayerCharacterId);
sceNp->AddFunc(0x276c72b2, sceNpSignalingSetCtxOpt);
sceNp->AddFunc(0x27c69eba, sceNpBasicAddFriend);
sceNp->AddFunc(0x29dd45dc, sceNpScoreSetTimeout);
sceNp->AddFunc(0x2a76895a, sceNpScoreGetClansRankingByClanId);
sceNp->AddFunc(0x2ad7837d, sceNpMatchingAcceptInvitationGUI);
sceNp->AddFunc(0x2be41ece, sceNpCommerceGetNumOfChildCategory);
sceNp->AddFunc(0x2cd2a1af, sceNpScoreSanitizeCommentAsync);
sceNp->AddFunc(0x2e1c5068, sceNpMatchingDestroyCtx);
sceNp->AddFunc(0x2f2c6b3e, sceNpProfileAbortGui);
sceNp->AddFunc(0x2fccbfe0, sceNpLookupUserProfileWithAvatarSize);
sceNp->AddFunc(0x30d1cbde, sceNpBasicGetMessageEntry);
sceNp->AddFunc(0x32200389, sceNpManagerGetMyLanguages);
sceNp->AddFunc(0x32c78a6a, sceNpBasicGetFriendPresenceByIndex);
sceNp->AddFunc(0x32cf311f, sceNpScoreInit);
sceNp->AddFunc(0x32febb4c, sceNpMatchingSearchJoinRoomGUI);
sceNp->AddFunc(0x34cc0ca4, sceNpMatchingKickRoomMember);
sceNp->AddFunc(0x34ce82a0, sceNpSignalingGetConnectionFromPeerAddress);
sceNp->AddFunc(0x359642a6, sceNpCommerceGetCategoryDescription);
sceNp->AddFunc(0x36d0c2c5, sceNpManagerGetAvatarUrl);
sceNp->AddFunc(0x39a69619, sceNpCommerceGetSkuId);
sceNp->AddFunc(0x3b02418d, sceNpScoreGetGameData);
sceNp->AddFunc(0x3cc8588a, sceNpMatchingCreateRoomGUI);
sceNp->AddFunc(0x3d1760dc, sceNpLookupAbortTransaction);
sceNp->AddFunc(0x3db7914d, sceNpScoreGetRankingByNpIdAsync);
sceNp->AddFunc(0x3f0808aa, sceNpBasicSetPresence);
sceNp->AddFunc(0x3f195b3a, sceNpCommerceGetProductCategoryResult);
sceNp->AddFunc(0x4026eac5, sceNpBasicRegisterContextSensitiveHandler);
sceNp->AddFunc(0x41ffd4f2, sceNpScoreGetClansMembersRankingByNpIdPcId);
sceNp->AddFunc(0x433fcb30, sceNpScoreGetClansMembersRankingByNpIdPcIdAsync);
sceNp->AddFunc(0x43b989f5, sceNpBasicSendMessageAttachment);
sceNp->AddFunc(0x442381f7, sceNpManagerSubSignin);
sceNp->AddFunc(0x45f8f3aa, sceNpCustomMenuRegisterActions);
sceNp->AddFunc(0x474b7b13, sceNpMatchingJoinRoomGUI);
sceNp->AddFunc(0x481ce0e8, sceNpBasicAbortGui);
sceNp->AddFunc(0x4a18a89e, sceNpMatchingSetRoomInfoNoLimit);
sceNp->AddFunc(0x4b9efb7a, sceNpManagerGetCachedInfo);
sceNp->AddFunc(0x4d5e0670, sceNpScoreGetClansMembersRankingByRangeAsync);
sceNp->AddFunc(0x4d9c615d, sceNpBasicGetClanMessageEntry);
sceNp->AddFunc(0x50b86d94, sceNpSignalingAddExtendedHandler);
sceNp->AddFunc(0x52a6b523, sceNpManagerUnregisterCallback);
sceNp->AddFunc(0x58fa4fcd, sceNpManagerGetTicketParam);
sceNp->AddFunc(0x5d543bbe, sceNpBasicGetMessageAttachmentEntry);
sceNp->AddFunc(0x5de61626, sceNpLookupDestroyTitleCtx);
sceNp->AddFunc(0x5e117ed5, sceNpLookupTitleStorageAsync);
sceNp->AddFunc(0x5e849303, sceNpBasicSetPresenceDetails2);
sceNp->AddFunc(0x5f2d9257, sceNpLookupInit);
sceNp->AddFunc(0x60440c73, sceNpManagerSubSigninAbortGui);
sceNp->AddFunc(0x60897c38, sceNpSignalingActivateConnection);
sceNp->AddFunc(0x6356082e, sceNpSignalingCreateCtx);
sceNp->AddFunc(0x6453b27b, sceNpBasicGetFriendPresenceByIndex2);
sceNp->AddFunc(0x64a704cc, sceNpBasicRecvMessageAttachmentLoad);
sceNp->AddFunc(0x64dbb89d, sceNpSignalingCancelPeerNetInfo);
sceNp->AddFunc(0x674bb9ff, sceNpCommerceGetProductCategoryAbort);
sceNp->AddFunc(0x691f429d, sceNpMatchingGetRoomInfo);
sceNp->AddFunc(0x6cb81eb2, sceNpCommerceDestroyProductCategory);
sceNp->AddFunc(0x6d4adc3b, sceNpScoreGetClansMembersRankingByRange);
sceNp->AddFunc(0x6e2ab18b, sceNpCommerceGetCategoryName);
sceNp->AddFunc(0x6ee62ed2, sceNpManagerGetContentRatingFlag);
sceNp->AddFunc(0x6f5e8143, sceNpScoreCreateTransactionCtx);
sceNp->AddFunc(0x6f8fd267, sceNpMatchingSetRoomInfo);
sceNp->AddFunc(0x71e5af7e, sceNpLookupSetTimeout);
sceNp->AddFunc(0x7208dc08, sceNpCommerceGetNumOfChildProductSku);
sceNp->AddFunc(0x73931bd0, sceNpBasicGetBlockListEntryCount);
sceNp->AddFunc(0x73a2e36b, sceNpMatchingGetRoomMemberListLocal);
sceNp->AddFunc(0x741fbf24, sceNpScoreGetClanMemberGameData);
sceNp->AddFunc(0x7508112e, sceNpLookupPollAsync);
sceNp->AddFunc(0x75eb50cb, sceNpSignalingGetPeerNetInfo);
sceNp->AddFunc(0x78d7f9ad, sceNpCommerceGetSkuPrice);
sceNp->AddFunc(0x79225aa3, sceNpCommerceGetCurrencyCode);
sceNp->AddFunc(0x7b7e9137, sceNpScoreGetClansRankingByRangeAsync);
sceNp->AddFunc(0x7be47e61, sceNpScoreCensorCommentAsync);
sceNp->AddFunc(0x7deb244c, sceNpScoreCensorComment);
sceNp->AddFunc(0x7e2fef28, sceNpManagerRequestTicket);
sceNp->AddFunc(0x806960ab, sceNpBasicRecvMessageCustom);
sceNp->AddFunc(0x816c6a5f, _sceNpSysutilClientFree);
sceNp->AddFunc(0x8297f1ec, sceNpManagerRequestTicket2);
sceNp->AddFunc(0x8440537c, sceNpLookupTerm);
sceNp->AddFunc(0x860b1756, sceNpLookupTitleSmallStorageAsync);
sceNp->AddFunc(0x8b7bbd73, sceNpMatchingSendInvitationGUI);
sceNp->AddFunc(0x8d1d096c, sceNpCommerceInitProductCategory);
sceNp->AddFunc(0x8d4518a0, sceNpCommerceSetDataFlagFinish);
sceNp->AddFunc(0x9153bdf4, sceNpBasicGetMessageAttachmentEntryCount);
sceNp->AddFunc(0x9281e87a, sceNpCommerceGetDataFlagFinish);
sceNp->AddFunc(0x936df4aa, sceNpCommerceGetProductId);
sceNp->AddFunc(0x9452f4f8, sceNpCommerceGetCategoryImageURL);
sceNp->AddFunc(0x9458f464, sceNpCustomMenuRegisterExceptionList);
sceNp->AddFunc(0x95c7bba3, sceNpSignalingTerminateConnection);
sceNp->AddFunc(0x9851f805, sceNpScoreTerm);
sceNp->AddFunc(0x99ac9952, sceNpCommerceSetDataFlagStart);
sceNp->AddFunc(0x9ad7fbd1, sceNpSignalingGetLocalNetInfo);
sceNp->AddFunc(0x9ee9f97e, sceNpLookupTitleStorage);
sceNp->AddFunc(0xa15f35fe, sceNpBasicGetPlayersHistoryEntryCount);
sceNp->AddFunc(0xa1709abd, sceNpManagerGetEntitlementById);
sceNp->AddFunc(0xa284bd1d, sceNpMatchingSetRoomSearchFlag);
sceNp->AddFunc(0xa7a090e5, sceNpScorePollAsync);
sceNp->AddFunc(0xa85a4951, sceNpCommerceGetSkuDescription);
sceNp->AddFunc(0xa8afa7d4, sceNpBasicGetCustomInvitationEntryCount);
sceNp->AddFunc(0xaa16695f, sceNpDrmProcessExitSpawn);
sceNp->AddFunc(0xac66568c, sceNpMatchingCreateCtx);
sceNp->AddFunc(0xacb9ee8e, sceNpBasicUnregisterHandler);
sceNp->AddFunc(0xaee8cf71, sceNpCommerceGetCategoryId);
sceNp->AddFunc(0xaf3eba5a, sceNpCommerceDoCheckoutFinishAsync);
sceNp->AddFunc(0xaf505def, sceNpBasicGetMatchingInvitationEntryCount);
sceNp->AddFunc(0xaf57d9c9, sceNpCommerceGetCurrencyDecimals);
sceNp->AddFunc(0xafef640d, sceNpBasicGetFriendListEntryCount);
sceNp->AddFunc(0xb020684e, sceNpMatchingGetRoomInfoNoLimit);
sceNp->AddFunc(0xb082003b, sceNpScoreGetClansRankingByRange);
sceNp->AddFunc(0xb1c02d66, sceNpCommerceGetCurrencyInfo);
sceNp->AddFunc(0xb1e0718b, sceNpManagerGetAccountRegion);
sceNp->AddFunc(0xb5cb2d56, sceNpBasicRecvMessageAttachment);
sceNp->AddFunc(0xb6017827, sceNpLookupAvatarImage);
sceNp->AddFunc(0xb66d1c46, sceNpManagerGetEntitlementIdList);
sceNp->AddFunc(0xb9f93bbb, sceNpScoreCreateTitleCtx);
sceNp->AddFunc(0xba65de6d, sceNpCommerceGetChildCategoryInfo);
sceNp->AddFunc(0xbab91fc9, sceNpBasicGetPlayersHistoryEntry);
sceNp->AddFunc(0xbcc09fe7, sceNpBasicRegisterHandler);
sceNp->AddFunc(0xbcdbb2ab, sceNpBasicAddPlayersHistoryAsync);
sceNp->AddFunc(0xbdc07fd5, sceNpManagerGetNetworkTime);
sceNp->AddFunc(0xbe07c708, sceNpManagerGetOnlineId);
sceNp->AddFunc(0xbe81c71c, sceNpBasicSetPresenceDetails);
sceNp->AddFunc(0xbef887e5, sceNpScoreGetClanMemberGameDataAsync);
sceNp->AddFunc(0xbf607ec6, sceNpBasicGetClanMessageEntryCount);
sceNp->AddFunc(0xbf9eea93, sceNpLookupAvatarImageAsync);
sceNp->AddFunc(0xc3a991ee, sceNpScoreGetRankingByNpIdPcId);
sceNp->AddFunc(0xc4b6cd8f, sceNpScoreGetRankingByNpIdPcIdAsync);
sceNp->AddFunc(0xc5f4cf82, sceNpScoreDestroyTransactionCtx);
sceNp->AddFunc(0xca0a2d04, sceNpSignalingGetConnectionStatus);
sceNp->AddFunc(0xca39c4b2, sceNpLookupTitleSmallStorage);
sceNp->AddFunc(0xccbe2e69, sceNpCommerceGetSkuImageURL);
sceNp->AddFunc(0xce81c7f0, sceNpLookupCreateTitleCtx);
sceNp->AddFunc(0xceeebc7a, sceNpProfileCallGui);
sceNp->AddFunc(0xcfd469e4, sceNpCommerceGetProductCategoryFinish);
sceNp->AddFunc(0xd03cea35, sceNpCommerceGetDataFlagState);
sceNp->AddFunc(0xd053f113, sceNpBasicGetCustomInvitationEntry);
sceNp->AddFunc(0xd0958814, sceNpSignalingGetPeerNetInfoResult);
sceNp->AddFunc(0xd12e40ae, sceNpLookupNpIdAsync);
sceNp->AddFunc(0xd208f91d, sceNpUtilCmpNpId);
sceNp->AddFunc(0xd20d7798, sceNpMatchingKickRoomMemberWithOpt);
sceNp->AddFunc(0xd737fd2d, sceNpLookupWaitAsync);
sceNp->AddFunc(0xd7fb1fa6, sceNpFriendlistCustom);
sceNp->AddFunc(0xdae2d351, sceNpMatchingGrantOwnership);
sceNp->AddFunc(0xdb2e4dc2, sceNpScoreGetGameDataAsync);
sceNp->AddFunc(0xdbdb909f, sceNpCommerceGetDataFlagStart);
sceNp->AddFunc(0xddce7d15, sceNpScoreGetBoardInfoAsync);
sceNp->AddFunc(0xded17c26, sceNpScoreGetClansMembersRankingByNpId);
sceNp->AddFunc(0xdfd63b62, sceNpLookupUserProfile);
sceNp->AddFunc(0xe035f7d6, sceNpBasicGetEvent);
sceNp->AddFunc(0xe1c9f675, sceNpBasicMarkMessageAsUsed);
sceNp->AddFunc(0xe24eea19, sceNpMatchingGetRoomListLimitGUI);
sceNp->AddFunc(0xe2877bea, sceNpCommerceDestroyCtx);
sceNp->AddFunc(0xe36c660e, sceNpCommerceDoCheckoutStartAsync);
sceNp->AddFunc(0xe6c8f3f9, sceNpDrmProcessExitSpawn2);
sceNp->AddFunc(0xe7dcd3b4, sceNpManagerRegisterCallback);
sceNp->AddFunc(0xe853d388, sceNpSignalingGetConnectionFromNpId);
sceNp->AddFunc(0xe8a67160, sceNpScoreGetClansMembersRankingByNpIdAsync);
sceNp->AddFunc(0xea2e9ffc, sceNpLookupCreateTransactionCtx);
sceNp->AddFunc(0xeb5f2544, sceNpCommerceGetProductName);
sceNp->AddFunc(0xeb7a3d84, sceNpManagerGetChatRestrictionFlag);
sceNp->AddFunc(0xeb9df054, sceNpCommerceGetCategoryInfo);
sceNp->AddFunc(0xec0a1fbf, sceNpBasicSendMessage);
sceNp->AddFunc(0xecd503de, sceNpBasicGetMessageEntryCount);
sceNp->AddFunc(0xee0cc40c, _sceNpSysutilClientMalloc);
sceNp->AddFunc(0xee530059, sceNpCommerceGetSkuName);
sceNp->AddFunc(0xee5b20d9, sceNpScoreAbortTransaction);
sceNp->AddFunc(0xee64cf8e, sceNpMatchingGetRoomSearchFlag);
sceNp->AddFunc(0xf0a9182b, sceNpFriendlist);
sceNp->AddFunc(0xf0b1e399, sceNpScoreRecordScoreAsync);
sceNp->AddFunc(0xf1b77918, sceNpScoreSanitizeComment);
sceNp->AddFunc(0xf2b3338a, sceNpBasicGetBlockListEntry);
sceNp->AddFunc(0xf42c0df8, sceNpManagerGetOnlineName);
sceNp->AddFunc(0xf4e0f607, sceNpScoreGetBoardInfo);
sceNp->AddFunc(0xf59e1da8, sceNpFriendlistAbortGui);
sceNp->AddFunc(0xf5ff5f31, sceNpUtilCmpNpIdInOrder);
sceNp->AddFunc(0xf76847c2, sceNpScoreRecordGameDataAsync);
sceNp->AddFunc(0xf806c54c, sceNpMatchingLeaveRoom);
sceNp->AddFunc(0xf9732ac8, sceNpCustomMenuActionSetActivation);
sceNp->AddFunc(0xfb87cf5e, sceNpLookupDestroyTransactionCtx);
sceNp->AddFunc(0xfbc82301, sceNpScoreGetRankingByRange);
sceNp->AddFunc(0xfcac355a, sceNpCommerceCreateCtx);
sceNp->AddFunc(0xfd0eb5ae, sceNpSignalingDeactivateConnection);
sceNp->AddFunc(0xfd39ae13, sceNpBasicGetFriendPresenceByNpId);
sceNp->AddFunc(0xfe37a7f4, sceNpManagerGetNpId);
sceNp->AddFunc(0xff0a2378, sceNpLookupUserProfileAsync);
sceNp->AddFunc(0x432b3cbf, sceNpUtilBandwidthTestShutdown);
sceNp->AddFunc(0xc2ced2b7, sceNpUtilBandwidthTestInitStart);
sceNp->AddFunc(0xc880f37d, sceNpUtilBandwidthTestGetStatus);
sceNp->AddFunc(0xc99ee313, sceNpUtilBandwidthTestAbort);
2014-07-28 13:15:28 +02:00
sceNp->AddFunc(0xa8cf8451, sceNpSignalingDestroyCtx);
}