mirror of
https://github.com/LibreSplit/LibreSplit.git
synced 2026-04-27 14:20:24 +00:00
This should allow for plugins to refer to LibreSplit's functions without having to pull in half of the codebase.
13 lines
400 B
C
13 lines
400 B
C
#pragma once
|
|
|
|
#include "include/gui/app_window.h"
|
|
|
|
void timer_stop_and_reset(LSAppWindow* win);
|
|
void timer_start_split(LSAppWindow* win);
|
|
void timer_stop_or_reset(LSAppWindow* win);
|
|
void timer_unsplit(LSAppWindow* win);
|
|
void timer_skip(LSAppWindow* win);
|
|
void timer_pause(LSAppWindow* win);
|
|
void timer_unpause(LSAppWindow* win);
|
|
void timer_stop(LSAppWindow* win);
|
|
void timer_split(LSAppWindow* win);
|