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.

52 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1990-1999 Microsoft Corporation, All Rights Reserved
  3. Module Name:
  4. ptdrvstr.h
  5. Abstract:
  6. These are the string constants used in the RDP Remote Port driver.
  7. Using pointers to these string allows for better memory
  8. utilization and more readable code
  9. Environment:
  10. Kernel mode.
  11. Revision History:
  12. 02/12/99 - Initial Revision based on pnpi8042 driver
  13. --*/
  14. #ifndef _PTDRVSTR_H_
  15. #define _PTDRVSTR_H_
  16. //
  17. // Nmes used in debug print statements
  18. //
  19. #define PTDRV_DRIVER_NAME_A "RemotePrt: "
  20. #define PTDRV_FNC_SERVICE_PARAMETERS_A "PtServiceParameters"
  21. //
  22. // Some strings used frequently by the driver
  23. //
  24. #define PTDRV_DEBUGFLAGS_W L"DebugFlags"
  25. #define PTDRV_PARAMETERS_W L"\\Parameters"
  26. //
  27. // Make these variables globally visible
  28. //
  29. extern const PSTR pDriverName;
  30. extern const PSTR pFncServiceParameters;
  31. extern const PWSTR pwDebugFlags;
  32. extern const PWSTR pwParameters;
  33. #endif // _PTDRVSTR_H_