mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[NTOSKRNL]
Fix return type of PsSetProcessSecurityPort svn path=/trunk/; revision=61751
This commit is contained in:
parent
4dda515e77
commit
c9192d2c20
1 changed files with 6 additions and 5 deletions
|
@ -1229,22 +1229,23 @@ PsSetProcessPriorityClass(PEPROCESS Process,
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
VOID
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
PsSetProcessSecurityPort(PEPROCESS Process,
|
||||
PVOID SecurityPort)
|
||||
{
|
||||
Process->SecurityPort = SecurityPort;
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
PsSetProcessWin32Process(
|
||||
_Inout_ PEPROCESS Process,
|
||||
_In_opt_ PVOID Win32Process,
|
||||
_Inout_ PEPROCESS Process,
|
||||
_In_opt_ PVOID Win32Process,
|
||||
_In_opt_ PVOID OldWin32Process)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
|
|
Loading…
Reference in a new issue