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.

34 lines
864 B

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: SaConst.h
  4. //
  5. // Module: Server Appliance
  6. //
  7. // Synopsis: Define const values that are shared by multiple sub projects
  8. //
  9. // Copyright (C) Microsoft Corporation. All rights reserved.
  10. //
  11. // Author: fengsun Created 10/7/98
  12. //
  13. //+----------------------------------------------------------------------------
  14. #ifndef _SACONST_H_
  15. #define _SACONST_H_
  16. //
  17. // The registry key root under HKEY_LOCAL_MACHINE
  18. //
  19. #define REGKEY_SERVER_APPLIANCE TEXT("SOFTWARE\\Microsoft\\ServerAppliance")
  20. //
  21. // The ServiceDirectory sub key
  22. //
  23. #define REGKEY_SERVICE_DIRECTORY REGKEY_SERVER_APPLIANCE TEXT("\\ServiceDirectory")
  24. //
  25. // The user name for IIS anonymous account
  26. //
  27. #define INET_ANONYMOUS_USERNAME TEXT("IUSR_CHAMELEON")
  28. #endif