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.

31 lines
739 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. SetupSxs.h
  5. Abstract:
  6. Shared declarations for setup's Side by Side support.
  7. Author:
  8. Jay Krell (a-JayK) May 2000
  9. Revision History:
  10. --*/
  11. /* These strings appear in .inf/.inx files, so you can't just change them
  12. here and rebuild and expect it to work. */
  13. #define SXS_INF_ASSEMBLY_DIRECTORIES_SECTION_NAME_A ( "AssemblyDirectories" )
  14. /* that's all we need for 16bit winnt.exe and the rest doesn't all compile with it */
  15. #if (_MSC_VER > 800)
  16. #pragma once
  17. #define SXS_INF_ASSEMBLY_DIRECTORIES_SECTION_NAME_W ( L"AssemblyDirectories" )
  18. #define SXS_INF_ASSEMBLY_DIRECTORIES_SECTION_NAME (TEXT("AssemblyDirectories"))
  19. #endif