uOFW
Reverse engineered PSP kernel 6.60.
Loading...
Searching...
No Matches
systimer.h
1/* Copyright (C) 2011, 2012, 2013 The uOFW team
2 See the file COPYING for copying permission.
3*/
4
5#include "common_header.h"
6
12#ifndef SYSTIMER_H
13#define SYSTIMER_H
14
32typedef s32 (*SceSTimerCb)(s32 timerId, u32 count, void *common, u32);
33
40
49s32 sceSTimerFree(s32 timerId);
50
58s32 sceSTimerStartCount(s32 timerId);
59
68s32 sceSTimerGetCount(s32 timerId, s32 *count);
69
77s32 sceSTimerResetCount(s32 timerId);
78
86s32 sceSTimerStopCount(s32 timerId);
87
98s32 sceSTimerSetPrscl(s32 timerId, s32 numerator, s32 denominator);
99
115s32 sceSTimerSetHandler(s32 timerId, s32 compareValue, SceSTimerCb timeUpHandler, void *common);
116
125s32 sceSTimerSetTMCY(s32 timerId, s32 arg1);
126
127#endif /* SYSTIMER_H */
128
s32 sceSTimerSetHandler(s32 timerId, s32 compareValue, SceSTimerCb timeUpHandler, void *common)
s32 sceSTimerSetPrscl(s32 timerId, s32 numerator, s32 denominator)
s32 sceSTimerResetCount(s32 timerId)
s32(* SceSTimerCb)(s32 timerId, u32 count, void *common, u32)
Definition systimer.h:32
s32 sceSTimerStopCount(s32 timerId)
s32 sceSTimerGetCount(s32 timerId, s32 *count)
s32 sceSTimerFree(s32 timerId)
s32 sceSTimerStartCount(s32 timerId)
s32 sceSTimerAlloc(void)
s32 sceSTimerSetTMCY(s32 timerId, s32 arg1)