mirror of https://github.com/tongzx/nt5src
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
44 lines
619 B
/*++
|
|
|
|
Copyright (c) 1990 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
security.h
|
|
|
|
Abstract:
|
|
|
|
Internal security routine prototypes
|
|
|
|
|
|
Author:
|
|
|
|
Sunil Pai (sunilp) April 1992
|
|
|
|
--*/
|
|
|
|
|
|
NTSTATUS
|
|
SetupGenerateUniqueSid(
|
|
IN ULONG Seed,
|
|
OUT PSID *Sid
|
|
);
|
|
|
|
VOID
|
|
SetupLsaInitObjectAttributes(
|
|
IN POBJECT_ATTRIBUTES ObjectAttributes,
|
|
IN PSECURITY_QUALITY_OF_SERVICE SecurityQualityOfService
|
|
);
|
|
|
|
BOOL
|
|
HUserKeyToProfilePath(
|
|
IN HKEY hUserKey,
|
|
OUT LPSTR lpProfilePath,
|
|
IN OUT LPDWORD lpcbProfilePath
|
|
);
|
|
|
|
PSID
|
|
CreateSidFromSidAndRid(
|
|
PSID DomainSid,
|
|
ULONG Rid
|
|
);
|