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.

69 lines
1.3 KiB

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1998, Microsoft Corp. All rights reserved.
  4. //
  5. // FILE
  6. //
  7. // statinfo.h
  8. //
  9. // SYNOPSIS
  10. //
  11. // Declares global variables containing static configuration info.
  12. //
  13. // MODIFICATION HISTORY
  14. //
  15. // 08/15/1998 Original version.
  16. //
  17. ///////////////////////////////////////////////////////////////////////////////
  18. #ifndef _STATINFO_H_
  19. #define _STATINFO_H_
  20. #if _MSC_VER >= 1000
  21. #pragma once
  22. #endif
  23. #include <iaslsa.h>
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. //////////
  28. // Domain names.
  29. //////////
  30. extern WCHAR theAccountDomain [];
  31. extern WCHAR theRegistryDomain[];
  32. //////////
  33. // SID's
  34. //////////
  35. extern PSID theAccountDomainSid;
  36. extern PSID theBuiltinDomainSid;
  37. //////////
  38. // UNC name of the local computer.
  39. //////////
  40. extern WCHAR theLocalServer[];
  41. //////////
  42. // Product type for the local machine.
  43. //////////
  44. extern IAS_PRODUCT_TYPE ourProductType;
  45. //////////
  46. // Object Attributes -- no need to have more than one.
  47. //////////
  48. extern OBJECT_ATTRIBUTES theObjectAttributes;
  49. DWORD
  50. WINAPI
  51. IASStaticInfoInitialize( VOID );
  52. VOID
  53. WINAPI
  54. IASStaticInfoShutdown( VOID );
  55. #ifdef __cplusplus
  56. }
  57. #endif
  58. #endif // _STATINFO_H_