2014-08-15 16:57:55 +02:00
|
|
|
#include "stdafx.h"
|
2014-08-23 16:51:51 +02:00
|
|
|
#include "Emu/Memory/Memory.h"
|
2014-08-15 16:57:55 +02:00
|
|
|
#include "Emu/SysCalls/Modules.h"
|
2014-08-23 22:40:04 +02:00
|
|
|
|
2014-08-15 16:57:55 +02:00
|
|
|
#include "sceNpCommerce2.h"
|
|
|
|
|
|
2015-02-18 17:22:06 +01:00
|
|
|
extern Module sceNpCommerce2;
|
2014-08-15 16:57:55 +02:00
|
|
|
|
2015-07-26 11:15:15 +02:00
|
|
|
std::unique_ptr<SceNpCommerce2Internal> g_sceNpCommerce2;
|
2014-09-21 16:26:21 +02:00
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2ExecuteStoreBrowse()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetStoreBrowseUserdata()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2Init()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
2015-02-18 17:22:06 +01:00
|
|
|
sceNpCommerce2.Warning("sceNpCommerce2Init()");
|
2014-09-21 16:26:21 +02:00
|
|
|
|
2015-07-26 11:15:15 +02:00
|
|
|
if (g_sceNpCommerce2->m_bSceNpCommerce2Initialized)
|
|
|
|
|
{
|
2014-09-21 16:26:21 +02:00
|
|
|
return SCE_NP_COMMERCE2_ERROR_ALREADY_INITIALIZED;
|
2015-07-26 11:15:15 +02:00
|
|
|
}
|
2014-09-21 16:26:21 +02:00
|
|
|
|
2015-07-26 11:15:15 +02:00
|
|
|
g_sceNpCommerce2->m_bSceNpCommerce2Initialized = true;
|
2014-09-21 16:26:21 +02:00
|
|
|
|
2014-08-15 16:57:55 +02:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2Term()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
2015-02-18 17:22:06 +01:00
|
|
|
sceNpCommerce2.Warning("sceNpCommerce2Term()");
|
2014-09-21 16:26:21 +02:00
|
|
|
|
2015-07-26 11:15:15 +02:00
|
|
|
if (!g_sceNpCommerce2->m_bSceNpCommerce2Initialized)
|
|
|
|
|
{
|
2014-09-21 16:26:21 +02:00
|
|
|
return SCE_NP_COMMERCE2_ERROR_NOT_INITIALIZED;
|
2015-07-26 11:15:15 +02:00
|
|
|
}
|
2014-09-21 16:26:21 +02:00
|
|
|
|
2015-07-26 11:15:15 +02:00
|
|
|
g_sceNpCommerce2->m_bSceNpCommerce2Initialized = false;
|
2014-09-21 16:26:21 +02:00
|
|
|
|
2014-08-15 16:57:55 +02:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2CreateCtx()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DestroyCtx()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2CreateSessionStart()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2CreateSessionAbort()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2CreateSessionFinish()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetCategoryContentsCreateReq()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetCategoryContentsStart()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetCategoryContentsGetResult()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2InitGetCategoryContentsResult()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetCategoryInfo()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetContentInfo()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetCategoryInfoFromContentInfo()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetGameProductInfoFromContentInfo()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DestroyGetCategoryContentsResult()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetProductInfoCreateReq()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetProductInfoStart()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetProductInfoGetResult()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2InitGetProductInfoResult()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetGameProductInfo()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DestroyGetProductInfoResult()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetProductInfoListCreateReq()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetProductInfoListStart()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetProductInfoListGetResult()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2InitGetProductInfoListResult()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetGameProductInfoFromGetProductInfoListResult()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DestroyGetProductInfoListResult()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetContentRatingInfoFromGameProductInfo()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetContentRatingInfoFromCategoryInfo()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetContentRatingDescriptor()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetGameSkuInfoFromGameProductInfo()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetPrice()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DoCheckoutStartAsync()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DoCheckoutFinishAsync()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DoProductBrowseStartAsync()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DoProductBrowseFinishAsync()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DoDlListStartAsync()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DoDlListFinishAsync()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DoProductCodeStartAsync()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DoProductCodeFinishAsync()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2GetBGDLAvailability()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2SetBGDLAvailability()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2AbortReq()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-09 17:30:37 +02:00
|
|
|
s32 sceNpCommerce2DestroyReq()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpCommerce2);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-23 16:09:52 +01:00
|
|
|
Module sceNpCommerce2("sceNpCommerce2", []()
|
2014-08-15 16:57:55 +02:00
|
|
|
{
|
2015-07-26 11:15:15 +02:00
|
|
|
g_sceNpCommerce2 = std::make_unique<SceNpCommerce2Internal>();
|
2014-08-15 16:57:55 +02:00
|
|
|
|
2015-02-20 14:58:40 +01:00
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2ExecuteStoreBrowse);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetStoreBrowseUserdata);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2Init);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2Term);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2CreateCtx);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DestroyCtx);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2CreateSessionStart);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2CreateSessionAbort);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2CreateSessionFinish);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetCategoryContentsCreateReq);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetCategoryContentsStart);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetCategoryContentsGetResult);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2InitGetCategoryContentsResult);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetCategoryInfo);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetContentInfo);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetCategoryInfoFromContentInfo);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetGameProductInfoFromContentInfo);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DestroyGetCategoryContentsResult);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetProductInfoCreateReq);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetProductInfoStart);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetProductInfoGetResult);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2InitGetProductInfoResult);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetGameProductInfo);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DestroyGetProductInfoResult);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetProductInfoListCreateReq);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetProductInfoListStart);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetProductInfoListGetResult);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2InitGetProductInfoListResult);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetGameProductInfoFromGetProductInfoListResult);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DestroyGetProductInfoListResult);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetContentRatingInfoFromGameProductInfo);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetContentRatingInfoFromCategoryInfo);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetContentRatingDescriptor);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetGameSkuInfoFromGameProductInfo);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetPrice);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DoCheckoutStartAsync);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DoCheckoutFinishAsync);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DoProductBrowseStartAsync);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DoProductBrowseFinishAsync);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DoDlListStartAsync);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DoDlListFinishAsync);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DoProductCodeStartAsync);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DoProductCodeFinishAsync);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2GetBGDLAvailability);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2SetBGDLAvailability);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2AbortReq);
|
|
|
|
|
REG_FUNC(sceNpCommerce2, sceNpCommerce2DestroyReq);
|
2015-02-18 17:22:06 +01:00
|
|
|
});
|