2010-02-13 Jb Evain <jbevain@novell.com>
[mono-project.git] / mono / io-layer / daemon-private.h
blob4dc59072b84d0707057bc4184fe6baa56de035c4
1 /*
2 * daemon-private.h: External daemon functions
4 * Author:
5 * Dick Porter (dick@ximian.com)
7 * (C) 2002 Ximian, Inc.
8 */
10 #ifndef _WAPI_DAEMON_PRIVATE_H_
11 #define _WAPI_DAEMON_PRIVATE_H_
13 #include <mono/io-layer/wapi-private.h>
15 typedef enum {
16 DAEMON_STARTING = 0,
17 DAEMON_RUNNING = 1,
18 DAEMON_DIED_AT_STARTUP = 2,
19 DAEMON_CLOSING = 3
20 } _wapi_daemon_status;
22 extern void _wapi_daemon_main (gpointer data, gpointer scratch);
24 #endif /* _WAPI_DAEMON_PRIVATE_H_ */