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.
|
|
/*++
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
|