1
0
Fork 0
server/libthecore/include/signals.h

17 lines
280 B
C
Raw Normal View History

2022-03-05 12:44:06 +02:00
#ifndef __INC_LIBTHECORE_SIGNAL_H__
#define __INC_LIBTHECORE_SIGNAL_H__
#ifdef __cplusplus
extern "C"
{
#endif
extern void signal_setup();
extern void signal_timer_disable();
extern void signal_timer_enable(int timeout_seconds);
#ifdef __cplusplus
};
#endif
#endif