aboutsummaryrefslogtreecommitdiffstats
path: root/help.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2009-11-25 00:45:27 +0000
committerWilmer van der Gaast <wilmer@gaast.net>2009-11-25 00:45:27 +0000
commite5d8d21fd20516be53f873d269b469be109eca91 (patch)
tree14849d3e7e524f69d9f02be9ecfa61eeb5ab1baa /help.h
parent0ac1a37573f966d7a03b85816c583bd6976c402f (diff)
Added in-memory help info, which I wanted to implement for ages already.
Sadly the way I'm using it now doesn't work yet since nogaim_init() is called before help_init(). I'll fix that later. (Have to do that anyway to at least make ForkDaemon mode work..)
Diffstat (limited to 'help.h')
-rw-r--r--help.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/help.h b/help.h
index 5421220c..e689a93d 100644
--- a/help.h
+++ b/help.h
@@ -45,5 +45,6 @@ typedef struct help
G_GNUC_MALLOC help_t *help_init( help_t **help, const char *helpfile );
void help_free( help_t **help );
char *help_get( help_t **help, char *title );
+int help_add_mem( help_t **help, const char *title, const char *content_ );
#endif