GetExitCodeProcess

来源:互联网 发布:吃鸡网络词意思是什么 编辑:程序博客网 时间:2024/06/05 17:37
This function retrieves the termination status of the specified process.
BOOL GetExitCodeProcess( 
HANDLE hProcess,
LPDWORD lpExitCode
);

Parameters

hProcess
[in] Handle to the process.
lpExitCode
[out] Pointer to a 32-bit variable to receive the process termination status.

Return Values

Nonzero indicates success.

Zero indicates failure.

To get extended error information, call GetLastError.

Remarks

If the specified process has not terminated, the termination status returned is STILL_ACTIVE.

The following termination statuses can be returned if the process has terminated:

  • The exit value specified in the ExitProcess or TerminateProcess function
  • The return value from the main or WinMain function of the process
  • The exception value for an unhandled exception that caused the process to terminate

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Winbase.h.
Link Library: Coredll.lib.