SysTerminateProcess

Table of Contents

SysTerminateProcess

Description

Terminate a running process forcefully.

Parameters

NameDirectionDescription
proc_infoinProcess information object.

Success

Returns true if process was terminated.

Failure

Returns false if termination failed.

Usage example (Cross-references)

    }
    
    bool SysTerminateProcess(SysProcInfo* proc_info) {
    if (!proc_info) {
    return false;

Share :

Related Posts

SysWaitForProcess

SysWaitForProcess Description Wait for a process to complete with optional timeout.

Read More

SysGetProcessExitCode

SysGetProcessExitCode Description Get the exit code of a completed process.

Read More

SysGetDirContents

SysGetDirContents Description Read directory contents into a vector. Current contents of the vector will be cleared out.

Read More