Skip to content

Commit 9f2ae19

Browse files
committed
upd proect sdk
1 parent e49f6a5 commit 9f2ae19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/notifications.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ VOID _app_notify_killprocess (
542542

543543
if (NT_SUCCESS (status))
544544
{
545-
status = _r_sys_terminateprocess (process_handle, STATUS_SUCCESS);
545+
status = NtTerminateProcess (process_handle, STATUS_SUCCESS);
546546

547547
if (!NT_SUCCESS (status))
548548
_r_show_errormessage (hwnd, L"Cannot terminate process!", status, file_name->buffer, ET_NATIVE);

src/wfp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ HANDLE _wfp_getenginehandle ()
124124

125125
_r_log (LOG_LEVEL_CRITICAL, NULL, L"FwpmEngineOpen0", status, NULL);
126126

127-
_r_sys_terminateprocess (NtCurrentProcess (), status);
127+
NtTerminateProcess (NtCurrentProcess (), status);
128128

129129
break;
130130
}

0 commit comments

Comments
 (0)