* Update to version 2.19.5
[alpine.git] / alpine / osdep / termout.gen.h
blob6aa0e4ce0c1490ee45c92badaba1d3a91a6d2590
1 /*
2 * $Id: termout.gen.h 769 2007-10-24 00:15:40Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2006-2007 University of Washington
6 * Copyright 2013-2014 Eduardo Chappa
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * ========================================================================
17 #ifndef PINE_OSDEP_TERMOUT_GEN_INCLUDED
18 #define PINE_OSDEP_TERMOUT_GEN_INCLUDED
21 extern int _line;
22 extern int _col;
25 /* exported prototypes */
26 void PutLine0(int, int, register char *);
27 void PutLine0n8b(int, int, register char *, int, HANDLE_S *);
28 void PutLine1(int, int, char *, void *);
29 void PutLine2(int, int, char *, void *, void *);
30 void PutLine3(int, int, char *, void *, void *, void *);
31 void PutLine4(int, int, char *, void *, void *, void *, void *);
32 void PutLine5(int, int, char *, void *, void *, void *, void *, void *);
33 int Centerline(int, char *);
34 void ClearLine(int);
35 void ClearLines(int, int);
36 void CleartoEOLN(void);
37 void ClearScreen(void);
38 void clear_cursor_pos(void);
39 void Writechar(unsigned int, int);
40 void Write_to_screen(char *);
41 void Write_to_screen_n(char *, int);
42 void init_screen(void);
43 void end_screen(char *, int);
44 int config_screen(struct ttyo **);
45 void MoveCursor(int, int);
46 void Writewchar(UCS);
47 void icon_text(char *, int);
48 int get_windsize(struct ttyo *);
49 int BeginScroll(int, int);
50 void EndScroll(void);
51 int ScrollRegion(int);
54 #endif /* PINE_OSDEP_TERMOUT_GEN_INCLUDED */