Source code of Windows XP (NT5)
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.

42 lines
620 B

  1. /*++
  2. Copyright (c) 1991-92 Microsoft Corporation
  3. Module Name:
  4. Rxconfig.h
  5. Abstract:
  6. Private header file for redirector configuration for DRT
  7. Author:
  8. Balan Sethu Raman -- created from the workstation service code
  9. Revision History:
  10. --*/
  11. #ifndef _RXCONFIG_INCLUDED_
  12. #define _RXCONFIG_INCLUDED_
  13. typedef enum _DATATYPE {
  14. BooleanType,
  15. DWordType
  16. } DATATYPE, *PDATATYPE;
  17. typedef struct _RX_REDIR_FIELDS {
  18. LPWSTR Keyword;
  19. LPDWORD FieldPtr;
  20. DWORD Default;
  21. DWORD Minimum;
  22. DWORD Maximum;
  23. DATATYPE DataType;
  24. DWORD Parmnum;
  25. } RX_REDIR_FIELDS, *PRX_REDIR_FIELDS;
  26. #endif
  27.