Vita3K/vita3k/modules/SceCompat/SceCompat.cpp
hobyst 168dfb19ca Add license notice on source files which didn't have one
- Also updated the copyright notice year on all files to 2021
2021-08-19 23:14:27 +02:00

189 lines
4.3 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 "SceCompat.h"
EXPORT(int, sceCompatAllocCdramWithHole) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatAvailableColorSpaceSetting) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatCache) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatCheckPocketStation) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatDatRead) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatFrameBufferInit) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatGetCurrentSecureTick) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatGetDevInf) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatGetPeripheralState) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatGetPrimaryHead) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatGetPspSystemSoftwareVersion) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatGetStatus) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatGetTitleList) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatGetUpdateState) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatIdStorageLookup) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatInitEx) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatInterrupt) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatIsPocketStationTitle) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatLCDCSync) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatReadShared32) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatReturnValueEx) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatSetDisplayConfig) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatSetRif) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatSetSuspendSema) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatSetUpdateState) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatStart) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatStop) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatSuspendResume) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatUninit) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatWaitAndGetRequest) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatWaitIntr) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatWaitSpecialRequest) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatWriteShared32) {
return UNIMPLEMENTED();
}
EXPORT(int, sceCompatWriteSharedCtrl) {
return UNIMPLEMENTED();
}
BRIDGE_IMPL(sceCompatAllocCdramWithHole)
BRIDGE_IMPL(sceCompatAvailableColorSpaceSetting)
BRIDGE_IMPL(sceCompatCache)
BRIDGE_IMPL(sceCompatCheckPocketStation)
BRIDGE_IMPL(sceCompatDatRead)
BRIDGE_IMPL(sceCompatFrameBufferInit)
BRIDGE_IMPL(sceCompatGetCurrentSecureTick)
BRIDGE_IMPL(sceCompatGetDevInf)
BRIDGE_IMPL(sceCompatGetPeripheralState)
BRIDGE_IMPL(sceCompatGetPrimaryHead)
BRIDGE_IMPL(sceCompatGetPspSystemSoftwareVersion)
BRIDGE_IMPL(sceCompatGetStatus)
BRIDGE_IMPL(sceCompatGetTitleList)
BRIDGE_IMPL(sceCompatGetUpdateState)
BRIDGE_IMPL(sceCompatIdStorageLookup)
BRIDGE_IMPL(sceCompatInitEx)
BRIDGE_IMPL(sceCompatInterrupt)
BRIDGE_IMPL(sceCompatIsPocketStationTitle)
BRIDGE_IMPL(sceCompatLCDCSync)
BRIDGE_IMPL(sceCompatReadShared32)
BRIDGE_IMPL(sceCompatReturnValueEx)
BRIDGE_IMPL(sceCompatSetDisplayConfig)
BRIDGE_IMPL(sceCompatSetRif)
BRIDGE_IMPL(sceCompatSetSuspendSema)
BRIDGE_IMPL(sceCompatSetUpdateState)
BRIDGE_IMPL(sceCompatStart)
BRIDGE_IMPL(sceCompatStop)
BRIDGE_IMPL(sceCompatSuspendResume)
BRIDGE_IMPL(sceCompatUninit)
BRIDGE_IMPL(sceCompatWaitAndGetRequest)
BRIDGE_IMPL(sceCompatWaitIntr)
BRIDGE_IMPL(sceCompatWaitSpecialRequest)
BRIDGE_IMPL(sceCompatWriteShared32)
BRIDGE_IMPL(sceCompatWriteSharedCtrl)