diff options
| author | Jelmer Vernooij <jelmer@samba.org> | 2005-12-08 14:41:53 +0100 | 
|---|---|---|
| committer | Jelmer Vernooij <jelmer@samba.org> | 2005-12-08 14:41:53 +0100 | 
| commit | 1ee6c18cfb5eb03f33a5938b37e357dd3fd2c164 (patch) | |
| tree | 6b6806ac2c13634c7a7c5419e95a0c8bd1fe6884 /bitlbee.h | |
| parent | d636233a518fbe46264230866d4b8ea463f1474e (diff) | |
Add abstraction layer for storage
Diffstat (limited to 'bitlbee.h')
| -rw-r--r-- | bitlbee.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -99,6 +99,7 @@  extern char *CONF_FILE;  #include "irc.h" +#include "storage.h"  #include "set.h"  #include "protocols/nogaim.h"  #include "commands.h" @@ -114,6 +115,7 @@ typedef struct global_t {  	int listen_socket;  	help_t *help;  	conf_t *conf; +	storage_t *storage;  	char *helpfile;  	GMainLoop *loop;  } global_t; @@ -126,8 +128,6 @@ gboolean bitlbee_io_current_client_write( GIOChannel *source, GIOCondition condi  int root_command_string( irc_t *irc, user_t *u, char *command, int flags );  int root_command( irc_t *irc, char *command[] ); -int bitlbee_load( irc_t *irc, char *password ); -int bitlbee_save( irc_t *irc );  void bitlbee_shutdown( gpointer data );  double gettime( void );  G_MODULE_EXPORT void http_encode( char *s ); | 
