Scroll to navigation

GetExitCodeProcess(3w) Wine API GetExitCodeProcess(3w)

NAME

GetExitCodeProcess (KERNEL32.@)

SYNOPSIS

BOOL GetExitCodeProcess
(
HANDLE hProcess,
LPDWORD lpExitCode
)
 

DESCRIPTION

Gets termination status of specified process.
 

PARAMS

hProcess [In] Handle to the process.
lpExitCode [Out] Address to receive termination status.
 

RETURNS

Success: TRUE
Failure: FALSE
 

IMPLEMENTATION

Declared in "winbase.h".
Implemented in "dlls/kernel32/process.c".
Debug channel "process".
Oct 2012 Wine API