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.

42 lines
747 B

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1998, Microsoft Corp. All rights reserved.
  4. //
  5. // FILE
  6. //
  7. // subauth.h
  8. //
  9. // SYNOPSIS
  10. //
  11. // Declares the function GetDomainHandle.
  12. //
  13. // MODIFICATION HISTORY
  14. //
  15. // 10/14/1998 Original version.
  16. //
  17. ///////////////////////////////////////////////////////////////////////////////
  18. #ifndef _SUBAUTH_H_
  19. #define _SUBAUTH_H_
  20. #if _MSC_VER >= 1000
  21. #pragma once
  22. #endif
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. //////////
  27. // Returns a SAM handle for the local account domain.
  28. // This handle must not be closed.
  29. //////////
  30. NTSTATUS
  31. NTAPI
  32. GetDomainHandle(
  33. OUT SAMPR_HANDLE *DomainHandle
  34. );
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif // _SUBAUTH_H_