1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/*
* Editor startup and edit loop
* Copyright
* (C) 1992 Joseph H. Allen
*
* This file is part of JOE (Joe's Own Editor)
*/
#ifndef _JOE_MAIN_H
#define _JOE_MAIN_H 1
extern unsigned char *exmsg; /* Exit message */
extern int help; /* Set to start with help on */
extern Screen *maint; /* Primary screen */
extern int usexmouse; /* Use xterm mouse support? */
void nungetc PARAMS((int c));
void dofollows PARAMS((void));
int edloop PARAMS((int flg));
void edupd PARAMS((int flg));
extern volatile int dostaupd; /* Force status line update */
extern int nonotice; /* Set to prevent copyright notice */
extern int xmouse; /* XTerm mouse mode request by user (only allowed if terminal looks like xterm) */
extern unsigned char **mainenv; /* Environment variables passed to JOE */
extern unsigned char i_msg[128];
void internal_msg PARAMS((unsigned char *));
#endif
|