Leaked source code of windows server 2003
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
658 B

  1. /* File: D:\WACKER\emu\vt100.hh (Created: 13-July-1994)
  2. *
  3. * Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
  4. * All rights reserved
  5. *
  6. * $Revision: 1 $
  7. * $Date: 10/05/98 12:28p $
  8. */
  9. // Private emulator data for DEC Terminals.
  10. //
  11. typedef struct stPrivateDEC
  12. {
  13. int sv_row,
  14. sv_col,
  15. sv_state,
  16. sv_AWM,
  17. sv_DECOM,
  18. sv_protectmode,
  19. fAttrsSaved,
  20. len_s,
  21. len_t,
  22. nState,
  23. gn,
  24. old_gl,
  25. gl,
  26. gr,
  27. sv_gr,
  28. sv_gl,
  29. fDecColHold,
  30. *aiLineAttr;
  31. ECHAR storage[40],
  32. vt_charset[4],
  33. vt_sv_charset[4],
  34. terminate[4],
  35. *pntr;
  36. STATTR sv_attr;
  37. } DECPRIVATE;
  38. typedef DECPRIVATE *PSTDECPRIVATE;