/* * vt102.h: * * Copyright (c) 2008 James McKenzie , * All rights reserved. * */ /* * $Id$ */ /* * $Log$ * Revision 1.1 2008/02/03 23:36:41 james * *** empty log message *** * */ #ifndef __VT102_H__ #define __VT102_H__ #define VT102_CSI_LEN 128 typedef struct { int in_escape; int in_csi; int csi_ptr; char csi_buf[VT102_CSI_LEN]; } VT102_parser; typedef struct { VT102_parser p; int attr; CRT crt; CRT_Pos p; } VT102; #endif /* __VT102_H__ */