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

2636 lines
55 KiB
C++
Raw Normal View History

#include "stdafx.h"
#include "Utilities/Log.h"
#include "Emu/Memory/Memory.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUThread.h"
#include "Emu/SysCalls/SC_FUNC.h"
#include "Emu/SysCalls/Modules.h"
#include "Emu/FS/vfsDir.h"
#include "Crypto/unedat.h"
#include "sceNp.h"
//void sceNp_init();
//Module sceNp(0x0016, sceNp_init);
Module *sceNp = nullptr;
int sceNpInit(u32 mem_size, u32 mem_addr)
{
sceNp->Log("sceNpInit(mem_size=0x%x, mem_addr=0x%x)", mem_size, mem_addr);
return CELL_OK;
}
int sceNpTerm()
{
sceNp->Log("sceNpTerm");
return CELL_OK;
}
int sceNpDrmIsAvailable(u32 k_licensee_addr, u32 drm_path_addr)
{
sceNp->Warning("sceNpDrmIsAvailable(k_licensee_addr=0x%x, drm_path_addr=0x%x)", k_licensee_addr, drm_path_addr);
std::string drm_path = Memory.ReadString(drm_path_addr);
2014-07-01 14:21:55 +02:00
if (!Emu.GetVFS().ExistsFile(drm_path))
{
sceNp->Warning("sceNpDrmIsAvailable(): '%s' not found", drm_path.c_str());
return CELL_ENOENT;
}
std::string k_licensee_str;
u8 k_licensee[0x10];
for(int i = 0; i < 0x10; i++)
{
k_licensee[i] = Memory.Read8(k_licensee_addr + i);
k_licensee_str += fmt::Format("%02x", k_licensee[i]);
}
sceNp->Warning("sceNpDrmIsAvailable: Found DRM license file at %s", drm_path.c_str());
sceNp->Warning("sceNpDrmIsAvailable: Using k_licensee 0x%s", k_licensee_str.c_str());
// Set the necessary file paths.
std::string drm_file_name = fmt::AfterLast(drm_path,'/');
//make more explicit what this actually does (currently everything after the third slash and before the fourth slash)
std::string titleID = fmt::BeforeFirst(fmt::AfterFirst(fmt::AfterFirst(fmt::AfterFirst(drm_path,'/'),'/'),'/'),'/');
std::string enc_drm_path = rGetCwd() + drm_path;
std::string dec_drm_path = rGetCwd() + "/dev_hdd1/" + titleID + "/" + drm_file_name;
std::string rap_dir_path = rGetCwd() + "/dev_usb000/";
std::string rap_file_path = rap_dir_path;
// Search dev_usb000 for a compatible RAP file.
vfsDir *raps_dir = new vfsDir(rap_dir_path);
if (!raps_dir->IsOpened())
sceNp->Warning("sceNpDrmIsAvailable: Can't find RAP file for DRM!");
else
{
const std::vector<DirEntryInfo> &entries = raps_dir->GetEntries();
for (auto &entry: entries)
{
if (entry.name.find(titleID) != std::string::npos )
{
rap_file_path += entry.name;
break;
}
}
}
// Create a new directory under dev_hdd1/titleID to hold the decrypted data.
std::string tmp_dir = rGetCwd() + "/dev_hdd1/" + titleID;
if (!rDir::Exists(tmp_dir))
rMkdir(rGetCwd() + "/dev_hdd1/" + titleID);
// Decrypt this EDAT using the supplied k_licensee and matching RAP file.
DecryptEDAT(enc_drm_path, dec_drm_path, 8, rap_file_path, k_licensee, false);
return CELL_OK;
}
2014-04-03 01:24:39 +02:00
int sceNpDrmIsAvailable2(u32 k_licensee_addr, u32 drm_path_addr)
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
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, mem64_t time_remain_usec)
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
int sceNpManagerGetStatus(mem32_t status)
{
sceNp->Log("sceNpManagerGetStatus(status_addr=0x%x)", status.GetAddr());
// TODO: Check if sceNpInit() was called, if not return SCE_NP_ERROR_NOT_INITIALIZED
if (!status.IsGood())
return SCE_NP_ERROR_INVALID_ARGUMENT;
// TODO: Support different statuses
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
{
UNIMPLEMENTED_FUNC(sceNp);
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
{
UNIMPLEMENTED_FUNC(sceNp);
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 sceNpClansSendInvitationResponse()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansUpdateClanInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansRetrieveChallenges()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansSearchByProfile()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansGetMemberInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansCancelMembershipRequest()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansGetAutoAcceptStatus()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansTerm()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansDisbandClan()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansGetClanInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansAddBlacklistEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansLeaveClan()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansGetBlacklist()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansSendMembershipRequest()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansRemoveBlacklistEntry()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansUpdateAutoAcceptStatus()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansGetClanListByNpId()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansCancelInvitation()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansRetrieveAnnouncements()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansPostChallenge()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansGetMemberList()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansRetrievePostedChallenges()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansSendMembershipResponse()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansCreateRequest()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansInit()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansChangeMemberRole()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansCreateClan()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansKickMember()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansSearchByName()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansPostAnnouncement()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansSendInvitation()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansGetClanList()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansRemoveChallenge()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansRemovePostedChallenge()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansDestroyRequest()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansJoinClan()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansRemoveAnnouncement()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
int sceNpClansAbortRequest()
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpClansUpdateMemberInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DoCheckoutStartAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetProductInfoListGetResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetContentRatingDescriptor()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetBGDLAvailability()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetStoreBrowseUserdata()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DestroyReq()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2Init()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetCategoryContentsStart()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DoDlListFinishAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2Term()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2CreateSessionAbort()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DoDlListStartAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DestroyCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetCategoryContentsCreateReq()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2AbortReq()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetProductInfoStart()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2CreateSessionFinish()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetContentInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DoProductBrowseStartAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetProductInfoListStart()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DestroyGetCategoryContentsResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2SetBGDLAvailability()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetProductInfoCreateReq()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DoProductCodeFinishAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetContentRatingInfoFromCategoryInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DoProductBrowseFinishAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetCategoryInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetProductInfoGetResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetCategoryContentsGetResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2CreateSessionStart()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DoCheckoutFinishAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2InitGetCategoryContentsResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetGameProductInfoFromGetProductInfoListResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2CreateCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetPrice()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetGameSkuInfoFromGameProductInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DoProductCodeStartAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2InitGetProductInfoListResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetProductInfoListCreateReq()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetGameProductInfoFromContentInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetContentRatingInfoFromGameProductInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2ExecuteStoreBrowse()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetGameProductInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DestroyGetProductInfoResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2DestroyGetProductInfoListResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2InitGetProductInfoResult()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpCommerce2GetCategoryInfoFromContentInfo()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusDeleteMultiSlotDataVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiSlotVariable()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusSetMultiSlotVariableAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusSetDataVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiUserVariable()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusTryAndSetVariableVUserAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusCreateTransactionCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusPollAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusAddAndGetVariableAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusTerm()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiSlotVariableVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiSlotDataStatusVUserAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiUserDataStatusVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusDestroyTitleCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusDeleteMultiSlotDataAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusAbortTransaction()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiUserDataStatus()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusTryAndSetVariableVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiUserDataStatusVUserAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetDataVUserAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusDestroyTransactionCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusTryAndSetVariable()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetDataAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusSetTimeout()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiSlotDataStatusAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiUserVariableVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusCreateTitleCtx()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusSetData()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetData()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusInit()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusAddAndGetVariable()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiUserVariableVUserAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusSetMultiSlotVariableVUserAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusSetDataVUserAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiSlotDataStatusVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusAddAndGetVariableVUserAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetDataVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusDeleteMultiSlotVariable()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusWaitAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiSlotVariableAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusTryAndSetVariableAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusDeleteMultiSlotVariableVUserAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusDeleteMultiSlotVariableVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiUserDataStatusAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusDeleteMultiSlotDataVUserAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiSlotDataStatus()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiUserVariableAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusSetMultiSlotVariable()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusDeleteMultiSlotData()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusSetDataAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusDeleteMultiSlotVariableAsync()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusAddAndGetVariableVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusSetMultiSlotVariableVUser()
2014-07-27 19:30:25 +02:00
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
}
2014-07-28 08:10:50 +02:00
int sceNpTusGetMultiSlotVariableVUserAsync()
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;
}
void sceNp_init()
{
sceNp->AddFunc(0xbd28fdbf, sceNpInit);
sceNp->AddFunc(0x4885aa18, sceNpTerm);
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(0x095e12c6, sceNpClansSendInvitationResponse);
sceNp->AddFunc(0x09f9e1a9, sceNpClansUpdateClanInfo);
sceNp->AddFunc(0x0df25834, sceNpClansRetrieveChallenges);
sceNp->AddFunc(0x1221a1bf, sceNpClansSearchByProfile);
sceNp->AddFunc(0x20472da0, sceNpClansGetMemberInfo);
sceNp->AddFunc(0x299ccc9b, sceNpClansCancelMembershipRequest);
sceNp->AddFunc(0x38dadf1f, sceNpClansGetAutoAcceptStatus);
sceNp->AddFunc(0x42332cb7, sceNpClansTerm);
sceNp->AddFunc(0x4826f6d5, sceNpClansDisbandClan);
sceNp->AddFunc(0x487de998, sceNpClansGetClanInfo);
sceNp->AddFunc(0x4d06aef7, sceNpClansAddBlacklistEntry);
sceNp->AddFunc(0x560f717b, sceNpClansLeaveClan);
sceNp->AddFunc(0x56bc5a7c, sceNpClansGetBlacklist);
sceNp->AddFunc(0x59743b2b, sceNpClansSendMembershipRequest);
sceNp->AddFunc(0x5bff9da1, sceNpClansRemoveBlacklistEntry);
sceNp->AddFunc(0x5da94854, sceNpClansUpdateAutoAcceptStatus);
sceNp->AddFunc(0x672399a8, sceNpClansGetClanListByNpId);
sceNp->AddFunc(0x726dffd5, sceNpClansCancelInvitation);
sceNp->AddFunc(0x727aa7f8, sceNpClansRetrieveAnnouncements);
sceNp->AddFunc(0x83d65529, sceNpClansPostChallenge);
sceNp->AddFunc(0x856ff5c0, sceNpClansGetMemberList);
sceNp->AddFunc(0x8e785b97, sceNpClansRetrievePostedChallenges);
sceNp->AddFunc(0x942dbdc4, sceNpClansSendMembershipResponse);
sceNp->AddFunc(0x9a72232d, sceNpClansCreateRequest);
sceNp->AddFunc(0x9b820047, sceNpClansInit);
sceNp->AddFunc(0x9cac2085, sceNpClansChangeMemberRole);
sceNp->AddFunc(0xa6a31a38, sceNpClansCreateClan);
sceNp->AddFunc(0xaa7912b5, sceNpClansKickMember);
sceNp->AddFunc(0xace0cfba, sceNpClansSearchByName);
sceNp->AddFunc(0xada45b84, sceNpClansPostAnnouncement);
sceNp->AddFunc(0xbc05ef31, sceNpClansSendInvitation);
sceNp->AddFunc(0xca4181b4, sceNpClansGetClanList);
sceNp->AddFunc(0xce6dc0f0, sceNpClansRemoveChallenge);
sceNp->AddFunc(0xd3346dc4, sceNpClansRemovePostedChallenge);
sceNp->AddFunc(0xd6551cd1, sceNpClansDestroyRequest);
sceNp->AddFunc(0xdbf300ca, sceNpClansJoinClan);
sceNp->AddFunc(0xe2590f60, sceNpClansRemoveAnnouncement);
sceNp->AddFunc(0xe82969e2, sceNpClansAbortRequest);
sceNp->AddFunc(0xf4a2d52b, sceNpClansUpdateMemberInfo);
sceNp->AddFunc(0x104551a6, sceNpCommerce2DoCheckoutStartAsync);
sceNp->AddFunc(0x146618df, sceNpCommerce2GetProductInfoListGetResult);
sceNp->AddFunc(0x150fdca3, sceNpCommerce2GetContentRatingDescriptor);
sceNp->AddFunc(0x1fa1b312, sceNpCommerce2GetStoreBrowseUserdata);
sceNp->AddFunc(0x2a910f05, sceNpCommerce2DestroyReq);
sceNp->AddFunc(0x3539d233, sceNpCommerce2Init);
sceNp->AddFunc(0x371a2edd, sceNpCommerce2GetCategoryContentsStart);
sceNp->AddFunc(0x3d627d81, sceNpCommerce2GetBGDLAvailability);
sceNp->AddFunc(0x410d42be, sceNpCommerce2DoDlListFinishAsync);
sceNp->AddFunc(0x4d4a094c, sceNpCommerce2Term);
sceNp->AddFunc(0x62023e98, sceNpCommerce2CreateSessionAbort);
sceNp->AddFunc(0x6ca9efd4, sceNpCommerce2DoDlListStartAsync);
sceNp->AddFunc(0x6f67ea80, sceNpCommerce2DestroyCtx);
sceNp->AddFunc(0x7370d8d0, sceNpCommerce2GetCategoryContentsCreateReq);
sceNp->AddFunc(0x8df0057f, sceNpCommerce2AbortReq);
sceNp->AddFunc(0x8f46325b, sceNpCommerce2GetProductInfoStart);
sceNp->AddFunc(0x91f8843d, sceNpCommerce2CreateSessionFinish);
sceNp->AddFunc(0x972ab46c, sceNpCommerce2GetContentInfo);
sceNp->AddFunc(0x9825a0fc, sceNpCommerce2DoProductBrowseStartAsync);
sceNp->AddFunc(0x9cde07cc, sceNpCommerce2GetProductInfoListStart);
sceNp->AddFunc(0x9d9cb96b, sceNpCommerce2DestroyGetCategoryContentsResult);
sceNp->AddFunc(0xa5a863fe, sceNpCommerce2SetBGDLAvailability);
sceNp->AddFunc(0xa975ebb4, sceNpCommerce2GetProductInfoCreateReq);
sceNp->AddFunc(0xa9f945b3, sceNpCommerce2DoProductCodeFinishAsync);
sceNp->AddFunc(0xac78c1f3, sceNpCommerce2GetContentRatingInfoFromCategoryInfo);
sceNp->AddFunc(0xb23e3bd1, sceNpCommerce2DoProductBrowseFinishAsync);
sceNp->AddFunc(0xbd49eab2, sceNpCommerce2GetCategoryInfo);
sceNp->AddFunc(0xbf5f58ea, sceNpCommerce2GetProductInfoGetResult);
sceNp->AddFunc(0xca0ea996, sceNpCommerce2GetCategoryContentsGetResult);
sceNp->AddFunc(0xcc18cd2c, sceNpCommerce2CreateSessionStart);
sceNp->AddFunc(0xd43a130e, sceNpCommerce2DoCheckoutFinishAsync);
sceNp->AddFunc(0xd8a473a3, sceNpCommerce2InitGetCategoryContentsResult);
sceNp->AddFunc(0xd9956ce7, sceNpCommerce2GetGameProductInfoFromGetProductInfoListResult);
sceNp->AddFunc(0xd9fdcec2, sceNpCommerce2CreateCtx);
sceNp->AddFunc(0xda8e322d, sceNpCommerce2GetPrice);
sceNp->AddFunc(0xdb19194c, sceNpCommerce2GetGameSkuInfoFromGameProductInfo);
sceNp->AddFunc(0xde7ab33d, sceNpCommerce2DoProductCodeStartAsync);
sceNp->AddFunc(0xe0f90e44, sceNpCommerce2InitGetProductInfoListResult);
sceNp->AddFunc(0xe1e7b5ac, sceNpCommerce2GetProductInfoListCreateReq);
sceNp->AddFunc(0xe51a4944, sceNpCommerce2GetGameProductInfoFromContentInfo);
sceNp->AddFunc(0xec324c8f, sceNpCommerce2GetContentRatingInfoFromGameProductInfo);
sceNp->AddFunc(0xeef51be0, sceNpCommerce2ExecuteStoreBrowse);
sceNp->AddFunc(0xef645654, sceNpCommerce2GetGameProductInfo);
sceNp->AddFunc(0xef8eafcd, sceNpCommerce2DestroyGetProductInfoResult);
sceNp->AddFunc(0xf6139b58, sceNpCommerce2DestroyGetProductInfoListResult);
sceNp->AddFunc(0xf798f5e3, sceNpCommerce2InitGetProductInfoResult);
sceNp->AddFunc(0xfc216890, sceNpCommerce2GetCategoryInfoFromContentInfo);
sceNp->AddFunc(0x01711e81, sceNpTusDeleteMultiSlotDataVUser);
sceNp->AddFunc(0x0423e622, sceNpTusGetMultiSlotVariable);
sceNp->AddFunc(0x065b610d, sceNpTusSetMultiSlotVariableAsync);
sceNp->AddFunc(0x0835deb2, sceNpTusSetDataVUser);
sceNp->AddFunc(0x0d15043b, sceNpTusGetMultiUserVariable);
sceNp->AddFunc(0x17db7aa7, sceNpTusTryAndSetVariableVUserAsync);
sceNp->AddFunc(0x1904435e, sceNpTusCreateTransactionCtx);
sceNp->AddFunc(0x19bce18c, sceNpTusPollAsync);
sceNp->AddFunc(0x1fa5c87d, sceNpTusAddAndGetVariableAsync);
sceNp->AddFunc(0x225aed26, sceNpTusTerm);
sceNp->AddFunc(0x2357ba9e, sceNpTusGetMultiSlotVariableVUser);
sceNp->AddFunc(0x2ab21ea9, sceNpTusGetMultiSlotDataStatusVUserAsync);
sceNp->AddFunc(0x2d1b9f1a, sceNpTusGetMultiUserDataStatusVUser);
sceNp->AddFunc(0x2e162a62, sceNpTusDestroyTitleCtx);
sceNp->AddFunc(0x3175af23, sceNpTusDeleteMultiSlotDataAsync);
sceNp->AddFunc(0x325c6284, sceNpTusAbortTransaction);
sceNp->AddFunc(0x348dbcb4, sceNpTusGetMultiUserDataStatus);
sceNp->AddFunc(0x3602bc80, sceNpTusTryAndSetVariableVUser);
sceNp->AddFunc(0x368fec59, sceNpTusGetMultiUserDataStatusVUserAsync);
sceNp->AddFunc(0x38f364b0, sceNpTusGetDataVUserAsync);
sceNp->AddFunc(0x44eca8b4, sceNpTusDestroyTransactionCtx);
sceNp->AddFunc(0x47e9424a, sceNpTusTryAndSetVariable);
sceNp->AddFunc(0x5175abb9, sceNpTusGetDataAsync);
sceNp->AddFunc(0x59432970, sceNpTusSetTimeout);
sceNp->AddFunc(0x651fd79f, sceNpTusGetMultiSlotDataStatusAsync);
sceNp->AddFunc(0x6c511024, sceNpTusGetMultiUserVariableVUser);
sceNp->AddFunc(0x7caf58ee, sceNpTusCreateTitleCtx);
sceNp->AddFunc(0x7d5f0f0e, sceNpTusSetData);
sceNp->AddFunc(0x8ddd0d85, sceNpTusGetData);
sceNp->AddFunc(0x8f87a06b, sceNpTusInit);
sceNp->AddFunc(0x94989003, sceNpTusAddAndGetVariable);
sceNp->AddFunc(0x9549d22c, sceNpTusGetMultiUserVariableVUserAsync);
sceNp->AddFunc(0x96a06212, sceNpTusSetMultiSlotVariableVUserAsync);
sceNp->AddFunc(0x9cc0cf44, sceNpTusSetDataVUserAsync);
sceNp->AddFunc(0xa3abfadb, sceNpTusGetMultiSlotDataStatusVUser);
sceNp->AddFunc(0xa7993bf3, sceNpTusAddAndGetVariableVUserAsync);
sceNp->AddFunc(0xae4e590e, sceNpTusGetDataVUser);
sceNp->AddFunc(0xaf985783, sceNpTusDeleteMultiSlotVariable);
sceNp->AddFunc(0xb8e8ff22, sceNpTusWaitAsync);
sceNp->AddFunc(0xbb2877f2, sceNpTusGetMultiSlotVariableAsync);
sceNp->AddFunc(0xbbb244b7, sceNpTusTryAndSetVariableAsync);
sceNp->AddFunc(0xc2e18da8, sceNpTusDeleteMultiSlotVariableVUserAsync);
sceNp->AddFunc(0xc4e51fbf, sceNpTusDeleteMultiSlotVariableVUser);
sceNp->AddFunc(0xc66ba67e, sceNpTusGetMultiUserDataStatusAsync);
sceNp->AddFunc(0xc815b219, sceNpTusDeleteMultiSlotDataVUserAsync);
sceNp->AddFunc(0xc848d425, sceNpTusGetMultiSlotDataStatus);
sceNp->AddFunc(0xcc7a31cd, sceNpTusGetMultiUserVariableAsync);
sceNp->AddFunc(0xcc86a8f6, sceNpTusSetMultiSlotVariable);
sceNp->AddFunc(0xe0719847, sceNpTusDeleteMultiSlotData);
sceNp->AddFunc(0xe847341f, sceNpTusSetDataAsync);
sceNp->AddFunc(0xf5363608, sceNpTusDeleteMultiSlotVariableAsync);
sceNp->AddFunc(0xf60be06f, sceNpTusAddAndGetVariableVUser);
sceNp->AddFunc(0xf819be91, sceNpTusSetMultiSlotVariableVUser);
sceNp->AddFunc(0xfc7d346e, sceNpTusGetMultiSlotVariableVUserAsync);
sceNp->AddFunc(0x432b3cbf, sceNpUtilBandwidthTestShutdown);
sceNp->AddFunc(0xc2ced2b7, sceNpUtilBandwidthTestInitStart);
sceNp->AddFunc(0xc880f37d, sceNpUtilBandwidthTestGetStatus);
sceNp->AddFunc(0xc99ee313, sceNpUtilBandwidthTestAbort);
}