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.

37 lines
708 B

  1. /* File: D:\WACKER\tdll\property.hh (Created: 28-Feb-1994)
  2. *
  3. * Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
  4. * All rights reserved
  5. *
  6. * $Revision: 1 $
  7. * $Date: 10/05/98 12:40p $
  8. */
  9. // Let's keep all of the ASCII settings in one place...
  10. //
  11. typedef struct STASCIISET
  12. {
  13. int fsetSendCRLF;
  14. int fsetLocalEcho;
  15. int fsetAddLF;
  16. int fsetASCII7;
  17. int fsetWrapLines;
  18. int iLineDelay;
  19. int iCharDelay;
  20. } STASCIISET, *pSTASCIISET;
  21. // Local structure...
  22. // Put in whatever else you might need to access later
  23. //
  24. typedef struct SDS
  25. {
  26. STEMUSET stEmuSettings; // Emulator settings
  27. STASCIISET stAsciiSettings; // Ascii settings
  28. HSESSION hSession;
  29. } SDS, *pSDS;