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

146 lines
3.1 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, sceNpScoreAbortRequest) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreCensorComment) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreCensorCommentAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreChangeModeForOtherSaveDataOwners) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreCreateRequest) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreCreateTitleCtx) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreDeleteRequest) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreDeleteTitleCtx) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetBoardInfo) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetBoardInfoAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetFriendsRanking) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetFriendsRankingAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetGameData) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetGameDataAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetRankingByNpId) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetRankingByNpIdAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetRankingByNpIdPcId) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetRankingByNpIdPcIdAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetRankingByRange) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreGetRankingByRangeAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreInit) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScorePollAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreRecordGameData) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreRecordGameDataAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreRecordScore) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreRecordScoreAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreSanitizeComment) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreSanitizeCommentAsync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreSetPlayerCharacterId) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreSetTimeout) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreTerm) {
return UNIMPLEMENTED();
}
EXPORT(int, sceNpScoreWaitAsync) {
return UNIMPLEMENTED();
}