windows-nt/Source/XPSP1/NT/base/fs/rdr2/drt/daytona/rxconfig.h
2020-09-26 16:20:57 +08:00

43 lines
620 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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