diff options
Diffstat (limited to 'src/vt102.h')
-rw-r--r-- | src/vt102.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/vt102.h b/src/vt102.h index 1007353..1a23dd5 100644 --- a/src/vt102.h +++ b/src/vt102.h @@ -12,6 +12,9 @@ /* * $Log$ + * Revision 1.5 2008/02/06 15:53:22 james + * *** empty log message *** + * * Revision 1.4 2008/02/06 11:30:37 james * *** empty log message *** * @@ -52,10 +55,18 @@ typedef struct VT102_parser parser; int attr; CRT crt; - CRT_Pos pos; + + int pending_wrap; + CRT_Pos pos,current_line; + + + uint8_t modes[VT102_NMODES]; uint8_t private_modes[VT102_NMODES]; + + uint8_t tabs[VT102_COLS]; + } VT102; #define VT102_PRIVATE_MODE_CURSOR_MODE 1 |