EmuNewz Network

Full Version: HLEUnimplemented function in sceRtc
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Why do not have warning log for unimplement
sceRtcParseDateTime ,sceRtcParseRFC3339 ,sceRtcSetAlarmTick ?
(02-10-2013, 11:25 PM)sum2012 Wrote: [ -> ]Why do not have warning log for unimplement
sceRtcParseDateTime ,sceRtcParseRFC3339 ,sceRtcSetAlarmTick ?

A warning is automatically output when "@HLEUnimplemented" is set for a function:
Code:
@HLEUnimplemented
    @HLEFunction(nid = 0xDFBC5F16, version = 150)
    public int sceRtcParseDateTime() {
        return 0;
    }

    @HLEUnimplemented
    @HLEFunction(nid = 0x28E1E988, version = 150)
    public int sceRtcParseRFC3339() {
        return 0;
    }

    @HLEUnimplemented
    @HLEFunction(nid = 0x7D1FBED3, version = 150)
    public int sceRtcSetAlarmTick(TPointer64 srcPtr) {
        return 0;
    }
I see thanks