GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_app_timer.h
Go to the documentation of this file.
1//SPDX-License-Identifier: LGPL-2.0-or-later
2
3/*
4
5 Copyright (c) 2014-2025 Cyril Hrubis <metan@ucw.cz>
6
7 */
8
13
14#ifndef GP_APP_TIMER_H
15#define GP_APP_TIMER_H
16
25
34
44void gp_app_timer_reschedule(gp_timer *timer, uint32_t expires_ms);
45
46#endif /* GP_APP_TIMER_H */
void gp_app_timer_start(gp_timer *timer)
Inserts a timer into the widgets timer queue.
void gp_app_timer_stop(gp_timer *timer)
Removes a timer from the widgets timer queue.
void gp_app_timer_reschedule(gp_timer *timer, uint32_t expires_ms)
Reschedules a timer.
A timer.
Definition gp_timer.h:26