Changes in ipc.c [e252d8c:e277e80]
Legend:
- Unmodified
- Added
- Removed
-
ipc.c
re252d8c re277e80 28 28 #include "ipc.h" 29 29 #include "commands.h" 30 #ifndef _WIN32 30 31 #include <sys/uio.h> 31 32 #include <sys/un.h> 33 #endif 32 34 33 35 GSList *child_list = NULL; … … 841 843 } 842 844 845 #ifndef _WIN32 843 846 char *ipc_master_save_state() 844 847 { … … 939 942 return 1; 940 943 } 944 #else 945 int ipc_master_listen_socket() 946 { 947 /* FIXME: Open named pipe \\.\BITLBEE */ 948 return 0; 949 } 950 #endif 941 951 942 952 int ipc_master_load_state( char *statefile )
Note: See TracChangeset
for help on using the changeset viewer.