diff options
author | Frederic Culot <calcurse@culot.org> | 2008-11-28 08:46:29 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-11-28 08:46:29 +0000 |
commit | a4694b6bea77ec1065f4056585e234cbe9f09f75 (patch) | |
tree | 8ca1029b8bf917e270bbfea249edd4d7a3fcfc17 /src/help.h | |
parent | 910901a4f0abe565e5c1d12a480784e90a4bcd6c (diff) | |
download | calcurse-a4694b6bea77ec1065f4056585e234cbe9f09f75.tar.gz calcurse-a4694b6bea77ec1065f4056585e234cbe9f09f75.zip |
Online help updated to display user-defined keys.
Diffstat (limited to 'src/help.h')
-rwxr-xr-x | src/help.h | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1,8 +1,8 @@ -/* $calcurse: help.h,v 1.6 2008/11/23 20:38:56 culot Exp $ */ +/* $calcurse: help.h,v 1.7 2008/11/28 08:46:29 culot Exp $ */ /* * Calcurse - text-based organizer - * Copyright (c) 2004-2007 Frederic Culot + * Copyright (c) 2004-2008 Frederic Culot * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -32,13 +32,10 @@ typedef struct { char *title; - char *text; + char text[BUFSIZ]; } help_page_t; void help_screen (void); -void help_wins_init (scrollwin_t *, int, int, int, int); -void help_wins_reset (scrollwin_t *); -int help_write_pad (window_t *, char *, char *); #endif /* CALCURSE_HELP_H */ |