aboutsummaryrefslogtreecommitdiffstats
path: root/help.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-04-02 16:22:57 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-04-02 16:22:57 +0200
commit85d7b857fb8ca8e3c03d4abb3368a0966760630c (patch)
treea16163e557bcae3af41bde7d2d771d64ca248a97 /help.h
parent875ad4201402b1a8f80ba22a6cdcdb152c6e5510 (diff)
parentdd345753c1742905c9f81aa71d8b09109fbc5456 (diff)
Merge trunk.
Diffstat (limited to 'help.h')
-rw-r--r--help.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/help.h b/help.h
index 7b8da39a..5421220c 100644
--- a/help.h
+++ b/help.h
@@ -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