rpcsx/rpcs3/Emu/SysCalls/lv2/SC_Timer.h

23 lines
322 B
C
Raw Normal View History

#pragma once
enum
{
SYS_TIMER_STATE_STOP = 0x00U,
SYS_TIMER_STATE_RUN = 0x01U,
};
struct sys_timer_information_t
{
s64 next_expiration_time; //system_time_t
u64 period; //usecond_t
u32 timer_state;
u32 pad;
};
struct timer
{
rTimer tmr;
sys_timer_information_t timer_information_t;
};
#pragma pack()