forked from metin2/server
17 lines
280 B
C
17 lines
280 B
C
|
#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
|