Windows2003-3790/termsrv/rdpwsx/rdpcfgex/rdpcfgex.h
2020-09-30 16:53:55 +02:00

49 lines
1.1 KiB
C

/*++
Copyright (C) 1989-1998 Microsoft Corporation, All rights reserved
Module:
tscfgex.h
Abstract:
Terminal Server Connection Configuration DLL extension data structures
and function prototypes.
Author:
Brad Graziadio (BradG) 4-Feb-98
--*/
#ifndef _RDPCFGEX_
#define _RDPCFGEX_
//
// Constants used for string table entries
//
#define IDS_LOW 1000
#define IDS_COMPATIBLE 1001
#define IDS_HIGH 1002
#define IDS_FIPS 1003
#define IDS_LOW_DESCR 1010
#define IDS_COMPATIBLE_DESCR 1011
#define IDS_HI_DESCR 1012
#define IDS_FIPS_DESCR 1013
//
// DWORD values that get stored in the registry to represent the
// encryption level.
//
#define REG_LOW 0x00000001
#define REG_MEDIUM 0x00000002
#define REG_HIGH 0x00000003
#define REG_FIPS 0x00000004
//
// Number of encryption levels the RDP protocol uses
//
#define NUM_RDP_ENCRYPTION_LEVELS 4
#endif