mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
d13ebde7a3
Lots of new locking happening so that it's safe to have the config file disappear under the rest of the program Does NOT affect currently-running sources at the moment svn path=/trunk/icecast/; revision=4406
10 lines
161 B
C
10 lines
161 B
C
#ifndef __EVENT_H__
|
|
#define __EVENT_H__
|
|
|
|
#define EVENT_NO_EVENT 0
|
|
#define EVENT_CONFIG_READ 1
|
|
|
|
void event_config_read(void *nothing);
|
|
|
|
#endif /* __EVENT_H__ */
|