diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-01-20 16:15:49 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-01-20 16:15:49 +0100 |
commit | f73b9697f9be18e04ec7458634520f9dd2e2432f (patch) | |
tree | bc85b7818c6f76e584a92a067b3b2091d6c14384 /bitlbee.h | |
parent | 55ec2d66f04d1ea96e180c5a46e90a4294dea0b1 (diff) |
Renamed commands.c, got rid of return values in all command functions.
Diffstat (limited to 'bitlbee.h')
-rw-r--r-- | bitlbee.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -128,8 +128,8 @@ int bitlbee_inetd_init( void ); gboolean bitlbee_io_current_client_read( GIOChannel *source, GIOCondition condition, gpointer data ); gboolean bitlbee_io_current_client_write( GIOChannel *source, GIOCondition condition, gpointer data ); -int root_command_string( irc_t *irc, user_t *u, char *command, int flags ); -int root_command( irc_t *irc, char *command[] ); +void root_command_string( irc_t *irc, user_t *u, char *command, int flags ); +void root_command( irc_t *irc, char *command[] ); void bitlbee_shutdown( gpointer data ); double gettime( void ); G_MODULE_EXPORT void http_encode( char *s ); |