Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "GetExitCodeProcess" in [All]

advapi32

.

    Public Function GetExitCodeProcess(ByVal process As IntPtr, ByRef exitCode As UInt32) As Boolean

.

    GetExitCodeProcess(processInfo.process, exitCode)

.

        public static extern bool GetExitCodeProcess(IntPtr process, ref UInt32 exitCode);

.

            GetExitCodeProcess(processInfo.process, ref exitCode);

kernel32

.
Summary
.

static extern bool GetExitCodeProcess(IntPtr hProcess, out uint lpExitCode);

.

Public Shared Function GetExitCodeProcess(ByVal hProcess As IntPtr, ByRef lpExitCode As System.UInt32) As Boolean

.

            if (!PlatformInvoke.GetExitCodeProcess(pi.hProcess, out exitCode)) {

.

            throw new System.Runtime.InteropServices.ExternalException(" GetExitCodeProcess Error " + lastError, lastError);

.
Documentation
[GetExitCodeProcess] on MSDN

coredll

.

static extern bool GetExitCodeProcess(IntPtr Handle, out uint Wait);

.

Declare Function GetExitCodeProcess Lib "CoreDLL.dll" (TODO) As TODO

.

    if(GetExitCodeProcess(pi.hProcess, out ExitCode) == true){

.
Documentation
[GetExitCodeProcess] on MSDN

Enums

.

    /// Required to retrieve certain information about a process (see GetExitCodeProcess, GetPriorityClass, IsProcessInJob, QueryFullProcessImageName).

.

    ''' <summary>Enables usage of the process handle in the GetExitCodeProcess and GetPriorityClass functions to read information from the process object.</summary>

.

     """Enables usage of the process handle in the GetExitCodeProcess and GetPriorityClass functions to read information from the process object."""


 
Access PInvoke.net directly from VS: