mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +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
|
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
|
NTSTATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
SeReleaseSecurityDescriptor(
|
SeReleaseSecurityDescriptor(
|
||||||
|
@ -33,6 +46,13 @@ SeReleaseSecurityDescriptor(
|
||||||
IN BOOLEAN CaptureIfKernelMode
|
IN BOOLEAN CaptureIfKernelMode
|
||||||
);
|
);
|
||||||
|
|
||||||
|
VOID
|
||||||
|
STDCALL
|
||||||
|
SeSetAccessStateGenericMapping(
|
||||||
|
IN PACCESS_STATE AccessState,
|
||||||
|
IN PGENERIC_MAPPING GenericMapping
|
||||||
|
);
|
||||||
|
|
||||||
SECURITY_IMPERSONATION_LEVEL
|
SECURITY_IMPERSONATION_LEVEL
|
||||||
STDCALL
|
STDCALL
|
||||||
SeTokenImpersonationLevel(
|
SeTokenImpersonationLevel(
|
||||||
|
|
Loading…
Reference in a new issue