mirror of
https://github.com/Vita3K/Vita3K.git
synced 2025-04-02 11:02:10 -04:00
- for library Ft2/Motion/KernelForMono/KernelForVM/LibGcc/LibKernel/Mp4/RtcForDriver. - move library AppMgrUser/DisplayUser/Fios2User/RtcUser/Motion inside DriverUser module. - Config: remove load lib kernel and load only driver user.
194 lines
4.7 KiB
C++
194 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 "SceRtcForDriver.h"
|
|
|
|
EXPORT(int, ksceRtcConvertDateTimeToUnixTime) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcConvertLocalTimeToUtc) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcConvertTickToDateTime) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcConvertUtcToLocal) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcFormatRFC2822) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcFormatRFC2822LocalTime) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcFormatRFC3339) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcFormatRFC3339LocalTime) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetAccumulativeTime) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetAlarmTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetCurrentAdNetworkTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetCurrentClock) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetCurrentClockLocalTime) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetCurrentDebugNetworkTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetCurrentGpsTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetCurrentNetworkTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetCurrentRetainedNetworkTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetCurrentSecureTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetCurrentTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetLastAdjustedTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetLastReincarnatedTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcGetSecureAlarmTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcIsAlarmed) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcIsSecureAlarmed) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcRegisterCallback) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcRegisterSecureAlarmCallback) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcSetAlarmTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcSetConf) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcSetCurrentDebugNetworkTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcSetCurrentNetworkTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcSetCurrentSecureTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcSetCurrentTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcSetSecureAlarmTick) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcUnregisterCallback) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, ksceRtcUnregisterSecureAlarmCallback) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
BRIDGE_IMPL(ksceRtcConvertDateTimeToUnixTime)
|
|
BRIDGE_IMPL(ksceRtcConvertLocalTimeToUtc)
|
|
BRIDGE_IMPL(ksceRtcConvertTickToDateTime)
|
|
BRIDGE_IMPL(ksceRtcConvertUtcToLocal)
|
|
BRIDGE_IMPL(ksceRtcFormatRFC2822)
|
|
BRIDGE_IMPL(ksceRtcFormatRFC2822LocalTime)
|
|
BRIDGE_IMPL(ksceRtcFormatRFC3339)
|
|
BRIDGE_IMPL(ksceRtcFormatRFC3339LocalTime)
|
|
BRIDGE_IMPL(ksceRtcGetAccumulativeTime)
|
|
BRIDGE_IMPL(ksceRtcGetAlarmTick)
|
|
BRIDGE_IMPL(ksceRtcGetCurrentAdNetworkTick)
|
|
BRIDGE_IMPL(ksceRtcGetCurrentClock)
|
|
BRIDGE_IMPL(ksceRtcGetCurrentClockLocalTime)
|
|
BRIDGE_IMPL(ksceRtcGetCurrentDebugNetworkTick)
|
|
BRIDGE_IMPL(ksceRtcGetCurrentGpsTick)
|
|
BRIDGE_IMPL(ksceRtcGetCurrentNetworkTick)
|
|
BRIDGE_IMPL(ksceRtcGetCurrentRetainedNetworkTick)
|
|
BRIDGE_IMPL(ksceRtcGetCurrentSecureTick)
|
|
BRIDGE_IMPL(ksceRtcGetCurrentTick)
|
|
BRIDGE_IMPL(ksceRtcGetLastAdjustedTick)
|
|
BRIDGE_IMPL(ksceRtcGetLastReincarnatedTick)
|
|
BRIDGE_IMPL(ksceRtcGetSecureAlarmTick)
|
|
BRIDGE_IMPL(ksceRtcIsAlarmed)
|
|
BRIDGE_IMPL(ksceRtcIsSecureAlarmed)
|
|
BRIDGE_IMPL(ksceRtcRegisterCallback)
|
|
BRIDGE_IMPL(ksceRtcRegisterSecureAlarmCallback)
|
|
BRIDGE_IMPL(ksceRtcSetAlarmTick)
|
|
BRIDGE_IMPL(ksceRtcSetConf)
|
|
BRIDGE_IMPL(ksceRtcSetCurrentDebugNetworkTick)
|
|
BRIDGE_IMPL(ksceRtcSetCurrentNetworkTick)
|
|
BRIDGE_IMPL(ksceRtcSetCurrentSecureTick)
|
|
BRIDGE_IMPL(ksceRtcSetCurrentTick)
|
|
BRIDGE_IMPL(ksceRtcSetSecureAlarmTick)
|
|
BRIDGE_IMPL(ksceRtcUnregisterCallback)
|
|
BRIDGE_IMPL(ksceRtcUnregisterSecureAlarmCallback)
|