~mirabilos/jupp/trunk

1 by tg
Initial revision
1
/*
2
 *	Text editing windows
3
 *	Copyright
4
 *		(C) 1992 Joseph H. Allen
5
 *
6
 *	This file is part of JOE (Joe's Own Editor)
7
 */
8
#ifndef _JOE_TW_H
9
#define _JOE_TW_H 1
10
473 by tg
overhaul the way includes work; give jupp proper RCS IDs
11
#ifdef EXTERN
517 by tg
begin overhaul for antique/header compat:
12
__IDSTRING(rcsid_tw_h, "$MirOS: contrib/code/jupp/tw.h,v 1.6 2017/12/06 21:17:01 tg Exp $");
473 by tg
overhaul the way includes work; give jupp proper RCS IDs
13
#endif
1 by tg
Initial revision
14
517 by tg
begin overhaul for antique/header compat:
15
BW *wmktw(SCREEN *t, B *b);
1 by tg
Initial revision
16
517 by tg
begin overhaul for antique/header compat:
17
int usplitw(BW *bw);
18
int uduptw(BW *bw);
19
int utw0(BASE *b);
20
int utw1(BASE *b);
21
int uabortbuf(BW *bw);
22
int ucancel(BW *bw, int k);
23
int uabort(BW *bw, int k);
24
int uabort1(BW *bw, int k);
25
void setline(B *b, long int line);
26
int abortit(BW *bw);
1 by tg
Initial revision
27
extern int staen;
28
121 by tg
backport hex editing mode from joe 3.7 for waga as late birthday present
29
extern WATOM watomtw;
30
1 by tg
Initial revision
31
#endif