aboutsummaryrefslogtreecommitdiffstats
path: root/bitlbee.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-12-09 21:48:45 +0100
committerJelmer Vernooij <jelmer@samba.org>2005-12-09 21:48:45 +0100
commit9df916f7d178f5b87e8ca35e3eb44343f3d2d955 (patch)
treece5e73987972e937a13b07adddcba4d6540807b0 /bitlbee.h
parentc2295f7eeac263dbcc19f84e9a61abbe778aa9f8 (diff)
parent87c24bab5738824aba97a824b4c02f7a96b555a0 (diff)
Merge my storage abstraction changes
Diffstat (limited to 'bitlbee.h')
-rw-r--r--bitlbee.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitlbee.h b/bitlbee.h
index 805c7052..a23ef4a0 100644
--- a/bitlbee.h
+++ b/bitlbee.h
@@ -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, const char *password );
-int bitlbee_save( irc_t *irc );
void bitlbee_shutdown( gpointer data );
double gettime( void );
G_MODULE_EXPORT void http_encode( char *s );