Vita3K/vita3k/modules/SceNpCommerce2/SceNpCommerce2.cpp
2025-01-19 18:51:43 -03:00

186 lines
4.2 KiB
C++

// Vita3K emulator project
// Copyright (C) 2025 Vita3K team
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#include <module/module.h>
EXPORT(int, sceNpCommerce2AbortReq) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2CreateCtx) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2CreateSessionCreateReq) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2CreateSessionGetResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2CreateSessionStart) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2DestroyCtx) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2DestroyGetCategoryContentsResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2DestroyGetProductInfoListResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2DestroyGetProductInfoResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2DestroyReq) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetCategoryContentsCreateReq) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetCategoryContentsGetResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetCategoryContentsStart) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetCategoryInfo) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetCategoryInfoFromContentInfo) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetContentInfo) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetContentRatingDescriptor) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetContentRatingInfoFromCategoryInfo) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetContentRatingInfoFromGameProductInfo) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetGameProductInfo) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetGameProductInfoFromContentInfo) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetGameProductInfoFromGetProductInfoListResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetGameSkuInfoFromGameProductInfo) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetPrice) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetProductInfoCreateReq) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetProductInfoGetResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetProductInfoListCreateReq) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetProductInfoListGetResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetProductInfoListStart) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetProductInfoStart) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetSessionInfo) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetShortfallOfLibhttpPool) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2GetShortfallOfLibsslPool) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2HidePsStoreIcon) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2Init) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2InitGetCategoryContentsResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2InitGetProductInfoListResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2InitGetProductInfoResult) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2ShowPsStoreIcon) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2StartEmptyStoreCheck) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2StopEmptyStoreCheck) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpCommerce2Term) {
return UNIMPLEMENTED();
}