1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
/* $MirOS: contrib/code/jupp/help.h,v 1.2 2008/05/13 13:08:22 tg Exp $ */
/*
* Help system
* Copyright
* (C) 1992 Joseph H. Allen
* (C) 2001 Marek 'Marx' Grac
*
* This file is part of JOE (Joe's Own Editor)
*/
#ifndef _JOE_HELP_H
#define _JOE_HELP_H 1
#include "config.h"
#include "types.h"
void help_display PARAMS((SCREEN *t)); /* display text in help window */
int help_on PARAMS((SCREEN *t)); /* turn help on */
int help_init PARAMS((unsigned char *filename));/* load help file */
int u_help PARAMS((BASE *base)); /* toggle help on/off */
int u_help_next PARAMS((BASE *base)); /* goto next help screen */
int u_help_prev PARAMS((BASE *base)); /* goto prev help screen */
#endif
|