Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef __SYSTIMER_H__
00014 #define __SYSTIMER_H__
00015
00016 #ifdef __cplusplus
00017 extern "C" {
00018 #endif
00019
00020 typedef int SceSysTimerId;
00021
00027 SceSysTimerId sceSTimerAlloc(void);
00028
00035 void sceSTimerFree(SceSysTimerId timer);
00036
00043 void sceSTimerStartCount(SceSysTimerId timer);
00044
00051 void sceSTimerStopCount(SceSysTimerId timer);
00052
00059 void sceSTimerResetCount(SceSysTimerId timer);
00060
00068 void sceSTimerGetCount(SceSysTimerId timer, int* count);
00069
00079 void sceSTimerSetHandler(SceSysTimerId timer, int cycle, int (*handler)(void), int unk1);
00080
00081
00082
00083 void SysTimerForKernel_53231A15(SceSysTimerId timer, int unk1);
00084
00085 void SysTimerForKernel_B53534B4(SceSysTimerId timer, int unk1, int unk2);
00086
00087
00088
00089 #ifdef __cplusplus
00090 }
00091 #endif
00092
00093 #endif