File: help.h

package info (click to toggle)
joe 3.7-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,300 kB
  • ctags: 2,460
  • sloc: ansic: 34,071; sh: 3,419; makefile: 138
file content (22 lines) | stat: -rw-r--r-- 722 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *	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

void help_display PARAMS((Screen *t));		/* display text in help window */
int help_on PARAMS((Screen *t));		/* turn help on */
int help_init PARAMS((JFILE *fd,unsigned char *bf,int line)); /* read help from rc 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 */
extern int bg_help;				/* Background color for help */
extern int help_is_utf8;			/* Set if help text is UTF-8 */

#endif