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.

44 lines
619 B

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. security.h
  5. Abstract:
  6. Internal security routine prototypes
  7. Author:
  8. Sunil Pai (sunilp) April 1992
  9. --*/
  10. NTSTATUS
  11. SetupGenerateUniqueSid(
  12. IN ULONG Seed,
  13. OUT PSID *Sid
  14. );
  15. VOID
  16. SetupLsaInitObjectAttributes(
  17. IN POBJECT_ATTRIBUTES ObjectAttributes,
  18. IN PSECURITY_QUALITY_OF_SERVICE SecurityQualityOfService
  19. );
  20. BOOL
  21. HUserKeyToProfilePath(
  22. IN HKEY hUserKey,
  23. OUT LPSTR lpProfilePath,
  24. IN OUT LPDWORD lpcbProfilePath
  25. );
  26. PSID
  27. CreateSidFromSidAndRid(
  28. PSID DomainSid,
  29. ULONG Rid
  30. );