mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 13:02:38 +02:00
8 lines
241 B
C
8 lines
241 B
C
// Copyright 2018 plutoo
|
|
#pragma once
|
|
#include "kernel/utimer.h"
|
|
|
|
void _utimerRecalculate(UTimer* t, u64 old_tick);
|
|
u64 _utimerGetNextTick(UTimer* t);
|
|
void _utimerAddListener(UTimer* t, WaiterNode* w, s32 idx, s32* idx_out, Handle thread);
|