diff options
author | Frederic Culot <calcurse@culot.org> | 2008-11-23 20:38:55 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-11-23 20:38:55 +0000 |
commit | eb88eaecb3055fc5ab3cd3e05f0bc77e68f3942a (patch) | |
tree | c2ea254df263a1db681b82493392fa8f9639f477 /src/help.h | |
parent | 9d4899110a067d4899116ac229c8b4c489096b60 (diff) | |
download | calcurse-eb88eaecb3055fc5ab3cd3e05f0bc77e68f3942a.tar.gz calcurse-eb88eaecb3055fc5ab3cd3e05f0bc77e68f3942a.zip |
Building configuration menu to assign keybindings
Diffstat (limited to 'src/help.h')
-rwxr-xr-x | src/help.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: help.h,v 1.5 2008/04/12 21:14:03 culot Exp $ */ +/* $calcurse: help.h,v 1.6 2008/11/23 20:38:56 culot Exp $ */ /* * Calcurse - text-based organizer @@ -27,6 +27,8 @@ #ifndef CALCURSE_HELP_H #define CALCURSE_HELP_H +#include "wins.h" + typedef struct { char *title; @@ -35,5 +37,8 @@ typedef struct 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 */ |