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.

62 lines
1.0 KiB

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1998, Microsoft Corp. All rights reserved.
  4. //
  5. // FILE
  6. //
  7. // dyninfo.h
  8. //
  9. // SYNOPSIS
  10. //
  11. // Declares global variables containing dynamic configuration info.
  12. //
  13. // MODIFICATION HISTORY
  14. //
  15. // 08/15/1998 Original version.
  16. //
  17. ///////////////////////////////////////////////////////////////////////////////
  18. #ifndef _DYNINFO_H_
  19. #define _DYNINFO_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. // The primary domain.
  29. //////////
  30. extern WCHAR thePrimaryDomain[];
  31. //////////
  32. // The default domain.
  33. //////////
  34. extern PCWSTR theDefaultDomain;
  35. //////////
  36. // Role of the local machine.
  37. //////////
  38. extern IAS_ROLE ourRole;
  39. //////////
  40. // Name of the guest account for the default domain.
  41. //////////
  42. extern WCHAR theGuestAccount[];
  43. DWORD
  44. WINAPI
  45. IASDynamicInfoInitialize( VOID );
  46. VOID
  47. WINAPI
  48. IASDynamicInfoShutdown( VOID );
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. #endif // _DYNINFO_H_