mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Add stub for RtlSetProcessIsCritical.
svn path=/trunk/; revision=18217
This commit is contained in:
parent
855c2bb882
commit
3ddfd74461
2 changed files with 15 additions and 0 deletions
|
@ -621,6 +621,7 @@ RtlSetInformationAcl@16
|
||||||
RtlSetLastWin32Error@4
|
RtlSetLastWin32Error@4
|
||||||
RtlSetLastWin32ErrorAndNtStatusFromNtStatus@4
|
RtlSetLastWin32ErrorAndNtStatusFromNtStatus@4
|
||||||
RtlSetOwnerSecurityDescriptor@12
|
RtlSetOwnerSecurityDescriptor@12
|
||||||
|
RtlSetProcessIsCritical@12
|
||||||
RtlSetSaclSecurityDescriptor@16
|
RtlSetSaclSecurityDescriptor@16
|
||||||
RtlSetSecurityDescriptorRMControl@8
|
RtlSetSecurityDescriptorRMControl@8
|
||||||
RtlSetSecurityObject@20
|
RtlSetSecurityObject@20
|
||||||
|
|
|
@ -340,4 +340,18 @@ RtlEncodePointer(IN PVOID Pointer)
|
||||||
return (PVOID)((ULONG_PTR)Pointer ^ Cookie);
|
return (PVOID)((ULONG_PTR)Pointer ^ Cookie);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
NTSYSAPI
|
||||||
|
VOID
|
||||||
|
NTAPI
|
||||||
|
RtlSetProcessIsCritical(
|
||||||
|
IN BOOLEAN NewValue,
|
||||||
|
OUT PBOOLEAN OldValue OPTIONAL,
|
||||||
|
IN BOOLEAN IsWinlogon)
|
||||||
|
{
|
||||||
|
//TODO
|
||||||
|
}
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Reference in a new issue