// Vita3K emulator project // Copyright (C) 2025 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 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(); }