mirror of https://github.com/tongzx/nt5src
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
620 B
43 lines
620 B
/*++
|
|
|
|
Copyright (c) 1991-92 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Rxconfig.h
|
|
|
|
Abstract:
|
|
|
|
Private header file for redirector configuration for DRT
|
|
|
|
Author:
|
|
|
|
Balan Sethu Raman -- created from the workstation service code
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _RXCONFIG_INCLUDED_
|
|
#define _RXCONFIG_INCLUDED_
|
|
|
|
|
|
typedef enum _DATATYPE {
|
|
BooleanType,
|
|
DWordType
|
|
} DATATYPE, *PDATATYPE;
|
|
|
|
typedef struct _RX_REDIR_FIELDS {
|
|
LPWSTR Keyword;
|
|
LPDWORD FieldPtr;
|
|
DWORD Default;
|
|
DWORD Minimum;
|
|
DWORD Maximum;
|
|
DATATYPE DataType;
|
|
DWORD Parmnum;
|
|
} RX_REDIR_FIELDS, *PRX_REDIR_FIELDS;
|
|
|
|
|
|
#endif
|
|
|