aboutsummaryrefslogtreecommitdiffstats
path: root/src/vt102.h
blob: 6942175a589b7f09f56dbfb90fa81182759c3737 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * vt102.h:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

/*
 * $Id$
 */

/*
 * $Log$
 * Revision 1.3  2008/02/04 20:23:55  james
 * *** empty log message ***
 *
 * Revision 1.2  2008/02/04 02:05:06  james
 * *** empty log message ***
 *
 * Revision 1.1  2008/02/03 23:36:41  james
 * *** empty log message ***
 *
 */

#ifndef __VT102_H__
#define __VT102_H__

#define VT102_CSI_LEN 128

#define VT102_ROWS	24
#define VT102_COLS	80
#define VT102_STATUS_ROW	24

typedef struct
{
  int in_escape;
  int in_csi;
  int csi_ptr;
  char csi_buf[VT102_CSI_LEN];
} VT102_parser;

typedef struct
{
  CRT_Pos top_margin,bottom_margin;
  CRT_Pos screen_start,screen_end;
  VT102_parser parser;
  int attr;
  CRT crt;
  CRT_Pos pos;
} VT102;


#endif /* __VT102_H__ */