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.

40 lines
907 B

  1. /*++
  2. Copyright (c) 1990-1999 Microsoft Corporation, All Rights Reserved
  3. Module Name:
  4. ptdrvstr.c
  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. #include <precomp.h>
  15. #pragma hdrstop
  16. #include "ptdrvstr.h"
  17. //
  18. // Define some of the constant strings used for the debugger
  19. //
  20. const PSTR pDriverName = PTDRV_DRIVER_NAME_A;
  21. const PSTR pFncServiceParameters = PTDRV_FNC_SERVICE_PARAMETERS_A;
  22. //
  23. // Define some Constant strings that the drivers uses
  24. //
  25. const PWSTR pwDebugFlags = PTDRV_DEBUGFLAGS_W;
  26. const PWSTR pwParameters = PTDRV_PARAMETERS_W;