diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-02 16:22:57 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-02 16:22:57 +0200 |
commit | 85d7b857fb8ca8e3c03d4abb3368a0966760630c (patch) | |
tree | a16163e557bcae3af41bde7d2d771d64ca248a97 /help.h | |
parent | 875ad4201402b1a8f80ba22a6cdcdb152c6e5510 (diff) | |
parent | dd345753c1742905c9f81aa71d8b09109fbc5456 (diff) |
Merge trunk.
Diffstat (limited to 'help.h')
-rw-r--r-- | help.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -36,13 +36,14 @@ typedef struct help { int fd; time_t mtime; - char *string; + char *title; help_off_t offset; int length; struct help *next; } help_t; -help_t *help_init( help_t **help ); -char *help_get( help_t **help, char *string ); +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 ); #endif |