mirror of
https://github.com/ssstolk/rts4ds.git
synced 2025-06-19 01:15:32 -04:00
15 lines
329 B
C
15 lines
329 B
C
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2007-2025 Sander Stolk
|
|
|
|
#ifndef _TIMEDTRIGGERS_H_
|
|
#define _TIMEDTRIGGERS_H_
|
|
|
|
void doTimedtriggersLogic();
|
|
void initTimedtriggers();
|
|
|
|
struct Timer *getTimedTriggers();
|
|
int getTimedTriggersSaveSize(void);
|
|
int getTimedTriggersSaveData(void *dest, int max_size);
|
|
|
|
#endif
|