Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

43 lines
621 B

/* File: D:\WACKER\emu\vt100.hh (Created: 13-July-1994)
*
* Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
* All rights reserved
*
* $Revision: 1.5 $
* $Date: 1995/03/09 13:36:29 $
*/
// Private emulator data for DEC Terminals.
//
typedef struct stPrivateDEC
{
int sv_row,
sv_col,
sv_state,
sv_AWM,
sv_DECOM,
sv_protectmode,
fAttrsSaved,
len_s,
len_t,
nState,
gn,
old_gl,
gl,
gr,
sv_gr,
sv_gl,
fDecColHold,
*aiLineAttr;
ECHAR storage[40],
vt_charset[4],
vt_sv_charset[4],
terminate[4],
*pntr;
STATTR sv_attr;
} DECPRIVATE;
typedef DECPRIVATE *PSTDECPRIVATE;