mirror of
https://github.com/Vita3K/Vita3K.git
synced 2025-04-02 11:02:10 -04:00
174 lines
3.7 KiB
C++
174 lines
3.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 "SceLibRudp.h"
|
|
|
|
EXPORT(int, sceRudpActivate) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpBind) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpCreateContext) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpEnableInternalIOThread) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpEnableInternalIOThread2) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpEnd) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpFlush) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpGetContextStatus) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpGetLocalInfo) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpGetMaxSegmentSize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpGetNumberOfPacketsToRead) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpGetOption) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpGetRemoteInfo) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpGetSizeReadable) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpGetSizeWritable) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpGetStatus) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpInit) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpInitiate) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpNetReceived) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpPollCancel) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpPollControl) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpPollCreate) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpPollDestroy) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpPollWait) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpProcessEvents) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpRead) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpSetEventHandler) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpSetMaxSegmentSize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpSetOption) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpTerminate) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceRudpWrite) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
BRIDGE_IMPL(sceRudpActivate)
|
|
BRIDGE_IMPL(sceRudpBind)
|
|
BRIDGE_IMPL(sceRudpCreateContext)
|
|
BRIDGE_IMPL(sceRudpEnableInternalIOThread)
|
|
BRIDGE_IMPL(sceRudpEnableInternalIOThread2)
|
|
BRIDGE_IMPL(sceRudpEnd)
|
|
BRIDGE_IMPL(sceRudpFlush)
|
|
BRIDGE_IMPL(sceRudpGetContextStatus)
|
|
BRIDGE_IMPL(sceRudpGetLocalInfo)
|
|
BRIDGE_IMPL(sceRudpGetMaxSegmentSize)
|
|
BRIDGE_IMPL(sceRudpGetNumberOfPacketsToRead)
|
|
BRIDGE_IMPL(sceRudpGetOption)
|
|
BRIDGE_IMPL(sceRudpGetRemoteInfo)
|
|
BRIDGE_IMPL(sceRudpGetSizeReadable)
|
|
BRIDGE_IMPL(sceRudpGetSizeWritable)
|
|
BRIDGE_IMPL(sceRudpGetStatus)
|
|
BRIDGE_IMPL(sceRudpInit)
|
|
BRIDGE_IMPL(sceRudpInitiate)
|
|
BRIDGE_IMPL(sceRudpNetReceived)
|
|
BRIDGE_IMPL(sceRudpPollCancel)
|
|
BRIDGE_IMPL(sceRudpPollControl)
|
|
BRIDGE_IMPL(sceRudpPollCreate)
|
|
BRIDGE_IMPL(sceRudpPollDestroy)
|
|
BRIDGE_IMPL(sceRudpPollWait)
|
|
BRIDGE_IMPL(sceRudpProcessEvents)
|
|
BRIDGE_IMPL(sceRudpRead)
|
|
BRIDGE_IMPL(sceRudpSetEventHandler)
|
|
BRIDGE_IMPL(sceRudpSetMaxSegmentSize)
|
|
BRIDGE_IMPL(sceRudpSetOption)
|
|
BRIDGE_IMPL(sceRudpTerminate)
|
|
BRIDGE_IMPL(sceRudpWrite)
|