diff options
| author | Albert Cervin <albert@acervin.com> | 2024-05-22 00:00:29 +0200 |
|---|---|---|
| committer | Albert Cervin <albert@acervin.com> | 2024-09-12 20:17:56 +0200 |
| commit | 405da5f84b072ea97b69359454899f45d92d24b6 (patch) | |
| tree | 20525b4bc44a5d8cbab4d62abe8413e174731db6 /src/dged/timers.h | |
| parent | 4ab7e453e26afc6e9f4938c65f89463fbba9e267 (diff) | |
| download | dged-405da5f84b072ea97b69359454899f45d92d24b6.tar.gz dged-405da5f84b072ea97b69359454899f45d92d24b6.tar.xz dged-405da5f84b072ea97b69359454899f45d92d24b6.zip | |
WIP LSP client
This contains the start of an LSP client.
Nothing (except starting the LSP server) works
at the moment and the feature is disabled by default.
Diffstat (limited to 'src/dged/timers.h')
| -rw-r--r-- | src/dged/timers.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dged/timers.h b/src/dged/timers.h index ae79a8b..03ec742 100644 --- a/src/dged/timers.h +++ b/src/dged/timers.h @@ -5,8 +5,8 @@ struct timer; -void timers_init(); -void timers_start_frame(); +void timers_init(void); +void timers_start_frame(void); struct timer *timer_start(const char *name); uint64_t timer_stop(struct timer *timer); @@ -19,7 +19,7 @@ const char *timer_name(const struct timer *timer); typedef void (*timer_callback)(const struct timer *timer, void *userdata); void timers_for_each(timer_callback callback, void *userdata); -void timers_end_frame(); -void timers_destroy(); +void timers_end_frame(void); +void timers_destroy(void); #endif |
