Add bad string resistent utf16-utf8 conversions.
[mono.git] / mono / io-layer / daemon-private.h
1 /*
2  * daemon-private.h:  External daemon functions
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002 Ximian, Inc.
8  */
9
10 #ifndef _WAPI_DAEMON_PRIVATE_H_
11 #define _WAPI_DAEMON_PRIVATE_H_
12
13 #include <mono/io-layer/wapi-private.h>
14
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;
21
22 extern void _wapi_daemon_main (gpointer data, gpointer scratch);
23
24 #endif /* _WAPI_DAEMON_PRIVATE_H_ */