diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2009-11-25 00:45:27 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2009-11-25 00:45:27 +0000 |
commit | e5d8d21fd20516be53f873d269b469be109eca91 (patch) | |
tree | 14849d3e7e524f69d9f02be9ecfa61eeb5ab1baa /help.h | |
parent | 0ac1a37573f966d7a03b85816c583bd6976c402f (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.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |