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.

29 lines
856 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: U P S T R S . C P P
  7. //
  8. // Contents: Common strings for the various UPnP projects.
  9. //
  10. // Notes:
  11. //
  12. // Author: jeffspr 9 Dec 1999
  13. //
  14. //----------------------------------------------------------------------------
  15. #include <pch.h>
  16. #pragma hdrstop
  17. // __declspec(selectany) tells the compiler that the string should be in
  18. // its own COMDAT. This allows the linker to throw out unused strings.
  19. // If we didn't do this, the COMDAT for this module would reference the
  20. // strings so they wouldn't be thrown out.
  21. //
  22. #define CONST_GLOBAL extern const DECLSPEC_SELECTANY
  23. CONST_GLOBAL TCHAR c_szUPnPRegRoot[] = TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\UPnP");