Desktop Functions: Smart Device Functions:
|
Search Results for "TerminateProcess" in [All]kernel32
static extern bool TerminateProcess(IntPtr hProcess, uint uExitCode); Declare Auto Function TerminateProcess Lib "KERNEL32.DLL" (ByVal hProcess As IntPtr, _ coredll
static extern int TerminateProcess(IntPtr processIdOrHandle, IntPtr exitCode);
Declare Function TerminateProcess Lib "coredll.dll" (ByVal processIdOrHandle As IntPtr, ByVal exitCode As IntPtr) As Integer
TerminateProcess(GetCurrentProcessId(), (IntPtr)0); Enums
''' <summary>Enables usage of the process handle in the TerminateProcess function to terminate the process.</summary>
"""Enables usage of the process handle in the TerminateProcess function to terminate the process.""" wtsapi32
static extern bool WTSTerminateProcess(IntPtr hServer, int processId, int exitCode); |