mirror of
https://github.com/Vita3K/Vita3K.git
synced 2025-04-02 11:02:10 -04:00
184 lines
4.7 KiB
C++
184 lines
4.7 KiB
C++
// Vita3K emulator project
|
|
// Copyright (C) 2021 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 "SceNearDialogUtil.h"
|
|
|
|
EXPORT(int, sceNearDialogAbort) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearDialogGetResult) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearDialogGetStatus) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearDialogInit) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearDialogTerm) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityCloseDiscoveredGiftImage) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityCloseReceivedGiftData) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityConvertDiscoveredGiftParam) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityDeleteDiscoveredGift) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityDeleteGift) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityFinalize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetDiscoveredGiftInfo) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetDiscoveredGiftSender) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetDiscoveredGiftStatus) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetDiscoveredGifts) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetGift) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetGiftStatus) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetLastNeighborFoundDateTime) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetMyStatus) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetNeighbors) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetNewNeighbors) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityGetRecentNeighbors) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityIgnoreDiscoveredGift) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityInitialize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityLaunchNearAppForDownload) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityLaunchNearAppForUpdate) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityOpenDiscoveredGiftImage) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityOpenReceivedGiftData) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityReadDiscoveredGiftImage) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityReadReceivedGiftData) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilityRefresh) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilitySetGift) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceNearUtilitySetGift2) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
BRIDGE_IMPL(sceNearDialogAbort)
|
|
BRIDGE_IMPL(sceNearDialogGetResult)
|
|
BRIDGE_IMPL(sceNearDialogGetStatus)
|
|
BRIDGE_IMPL(sceNearDialogInit)
|
|
BRIDGE_IMPL(sceNearDialogTerm)
|
|
BRIDGE_IMPL(sceNearUtilityCloseDiscoveredGiftImage)
|
|
BRIDGE_IMPL(sceNearUtilityCloseReceivedGiftData)
|
|
BRIDGE_IMPL(sceNearUtilityConvertDiscoveredGiftParam)
|
|
BRIDGE_IMPL(sceNearUtilityDeleteDiscoveredGift)
|
|
BRIDGE_IMPL(sceNearUtilityDeleteGift)
|
|
BRIDGE_IMPL(sceNearUtilityFinalize)
|
|
BRIDGE_IMPL(sceNearUtilityGetDiscoveredGiftInfo)
|
|
BRIDGE_IMPL(sceNearUtilityGetDiscoveredGiftSender)
|
|
BRIDGE_IMPL(sceNearUtilityGetDiscoveredGiftStatus)
|
|
BRIDGE_IMPL(sceNearUtilityGetDiscoveredGifts)
|
|
BRIDGE_IMPL(sceNearUtilityGetGift)
|
|
BRIDGE_IMPL(sceNearUtilityGetGiftStatus)
|
|
BRIDGE_IMPL(sceNearUtilityGetLastNeighborFoundDateTime)
|
|
BRIDGE_IMPL(sceNearUtilityGetMyStatus)
|
|
BRIDGE_IMPL(sceNearUtilityGetNeighbors)
|
|
BRIDGE_IMPL(sceNearUtilityGetNewNeighbors)
|
|
BRIDGE_IMPL(sceNearUtilityGetRecentNeighbors)
|
|
BRIDGE_IMPL(sceNearUtilityIgnoreDiscoveredGift)
|
|
BRIDGE_IMPL(sceNearUtilityInitialize)
|
|
BRIDGE_IMPL(sceNearUtilityLaunchNearAppForDownload)
|
|
BRIDGE_IMPL(sceNearUtilityLaunchNearAppForUpdate)
|
|
BRIDGE_IMPL(sceNearUtilityOpenDiscoveredGiftImage)
|
|
BRIDGE_IMPL(sceNearUtilityOpenReceivedGiftData)
|
|
BRIDGE_IMPL(sceNearUtilityReadDiscoveredGiftImage)
|
|
BRIDGE_IMPL(sceNearUtilityReadReceivedGiftData)
|
|
BRIDGE_IMPL(sceNearUtilityRefresh)
|
|
BRIDGE_IMPL(sceNearUtilitySetGift)
|
|
BRIDGE_IMPL(sceNearUtilitySetGift2)
|