mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
- Add access state functions.
svn path=/trunk/; revision=16965
This commit is contained in:
parent
226f6c1ce2
commit
91907678f1
1 changed files with 20 additions and 0 deletions
|
@ -25,6 +25,19 @@ SeCaptureSecurityDescriptor(
|
|||
OUT PSECURITY_DESCRIPTOR *CapturedSecurityDescriptor
|
||||
);
|
||||
|
||||
NTSTATUS
|
||||
STDCALL
|
||||
SeCreateAccessState(
|
||||
PACCESS_STATE AccessState,
|
||||
PAUX_DATA AuxData,
|
||||
ACCESS_MASK Access,
|
||||
PGENERIC_MAPPING GenericMapping
|
||||
);
|
||||
|
||||
VOID
|
||||
STDCALL
|
||||
SeDeleteAccessState(IN PACCESS_STATE AccessState);
|
||||
|
||||
NTSTATUS
|
||||
STDCALL
|
||||
SeReleaseSecurityDescriptor(
|
||||
|
@ -33,6 +46,13 @@ SeReleaseSecurityDescriptor(
|
|||
IN BOOLEAN CaptureIfKernelMode
|
||||
);
|
||||
|
||||
VOID
|
||||
STDCALL
|
||||
SeSetAccessStateGenericMapping(
|
||||
IN PACCESS_STATE AccessState,
|
||||
IN PGENERIC_MAPPING GenericMapping
|
||||
);
|
||||
|
||||
SECURITY_IMPERSONATION_LEVEL
|
||||
STDCALL
|
||||
SeTokenImpersonationLevel(
|
||||
|
|
Loading…
Reference in a new issue