- Timestamp:
- 2006-01-19T16:34:41Z (19 years ago)
- Branches:
- master
- Children:
- bd9b00f
- Parents:
- 4c266f2 (diff), 4c266f2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ipc.h
r4c266f2 r2face62 27 27 #include "bitlbee.h" 28 28 29 void ipc_master_read( gpointer data, gint source, GaimInputCondition cond );30 void ipc_child_read( gpointer data, gint source, GaimInputCondition cond );31 32 void ipc_to_master( char **cmd );33 void ipc_to_master_str( char *msg_buf );34 void ipc_to_children( char **cmd );35 void ipc_to_children_str( char *msg_buf );36 37 29 struct bitlbee_child 38 30 { … … 40 32 int ipc_fd; 41 33 gint ipc_inpa; 34 35 char *host; 36 char *nick; 37 char *realname; 42 38 }; 43 39 40 void ipc_master_read( gpointer data, gint source, GaimInputCondition cond ); 41 void ipc_child_read( gpointer data, gint source, GaimInputCondition cond ); 42 43 void ipc_master_free_one( struct bitlbee_child *child ); 44 void ipc_master_free_all(); 45 46 void ipc_to_master( char **cmd ); 47 void ipc_to_master_str( char *format, ... ); 48 void ipc_to_children( char **cmd ); 49 void ipc_to_children_str( char *format, ... ); 50 44 51 extern GSList *child_list;
Note: See TracChangeset
for help on using the changeset viewer.