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.

34 lines
690 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. ppmacro.h
  5. Abstract:
  6. This header defines various generic macros for the Plug and Play subsystem.
  7. Author:
  8. Adrian J. Oney (AdriaO) July 26, 2000.
  9. Revision History:
  10. --*/
  11. //
  12. // This is to make all the TEXT(...) macros come out right. As of 07/27/2000,
  13. // UNICODE isn't defined in kernel space by default.
  14. //
  15. #define UNICODE
  16. //
  17. // This macro is used to convert HKLM relative paths from user-mode accessable
  18. // headers into a form usable by kernel mode. Eventually this macro should be
  19. // moved to somewhere like cm.h so the entire kernel can use it.
  20. //
  21. #define CM_REGISTRY_MACHINE(x) L"\\Registry\\Machine\\"##x