mirror of
https://github.com/Vita3K/Vita3K.git
synced 2025-04-02 11:02:10 -04:00
134 lines
3.1 KiB
C++
134 lines
3.1 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 "SceSulpha.h"
|
|
|
|
EXPORT(int, sceSulphaAgentsGetNeededMemory) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaAgentsRegister) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaAgentsUnregister) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaEventAdd) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaEventDelete) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaEventNew) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaEventReport) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaFileConnect) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaFileDisconnect) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaGetAgent) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaGetDefaultConfig) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaGetNeededMemory) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaGetTimestamp) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaInit) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaLogHandler) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaLogSetLevel) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaNetworkInit) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaNetworkShutdown) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaNodeDelete) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaNodeNew) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaSetBookmark) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaShutdown) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceSulphaUpdate) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
BRIDGE_IMPL(sceSulphaAgentsGetNeededMemory)
|
|
BRIDGE_IMPL(sceSulphaAgentsRegister)
|
|
BRIDGE_IMPL(sceSulphaAgentsUnregister)
|
|
BRIDGE_IMPL(sceSulphaEventAdd)
|
|
BRIDGE_IMPL(sceSulphaEventDelete)
|
|
BRIDGE_IMPL(sceSulphaEventNew)
|
|
BRIDGE_IMPL(sceSulphaEventReport)
|
|
BRIDGE_IMPL(sceSulphaFileConnect)
|
|
BRIDGE_IMPL(sceSulphaFileDisconnect)
|
|
BRIDGE_IMPL(sceSulphaGetAgent)
|
|
BRIDGE_IMPL(sceSulphaGetDefaultConfig)
|
|
BRIDGE_IMPL(sceSulphaGetNeededMemory)
|
|
BRIDGE_IMPL(sceSulphaGetTimestamp)
|
|
BRIDGE_IMPL(sceSulphaInit)
|
|
BRIDGE_IMPL(sceSulphaLogHandler)
|
|
BRIDGE_IMPL(sceSulphaLogSetLevel)
|
|
BRIDGE_IMPL(sceSulphaNetworkInit)
|
|
BRIDGE_IMPL(sceSulphaNetworkShutdown)
|
|
BRIDGE_IMPL(sceSulphaNodeDelete)
|
|
BRIDGE_IMPL(sceSulphaNodeNew)
|
|
BRIDGE_IMPL(sceSulphaSetBookmark)
|
|
BRIDGE_IMPL(sceSulphaShutdown)
|
|
BRIDGE_IMPL(sceSulphaUpdate)
|