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.

48 lines
1.1 KiB

  1. /*++
  2. Copyright (C) 1989-1998 Microsoft Corporation, All rights reserved
  3. Module:
  4. tscfgex.h
  5. Abstract:
  6. Terminal Server Connection Configuration DLL extension data structures
  7. and function prototypes.
  8. Author:
  9. Brad Graziadio (BradG) 4-Feb-98
  10. --*/
  11. #ifndef _RDPCFGEX_
  12. #define _RDPCFGEX_
  13. //
  14. // Constants used for string table entries
  15. //
  16. #define IDS_LOW 1000
  17. #define IDS_COMPATIBLE 1001
  18. #define IDS_HIGH 1002
  19. #define IDS_FIPS 1003
  20. #define IDS_LOW_DESCR 1010
  21. #define IDS_COMPATIBLE_DESCR 1011
  22. #define IDS_HI_DESCR 1012
  23. #define IDS_FIPS_DESCR 1013
  24. //
  25. // DWORD values that get stored in the registry to represent the
  26. // encryption level.
  27. //
  28. #define REG_LOW 0x00000001
  29. #define REG_MEDIUM 0x00000002
  30. #define REG_HIGH 0x00000003
  31. #define REG_FIPS 0x00000004
  32. //
  33. // Number of encryption levels the RDP protocol uses
  34. //
  35. #define NUM_RDP_ENCRYPTION_LEVELS 4
  36. #endif