参见MSDN:GetExitCodeProcess和GetExitCodeThread

解决方案 »

  1.   

    The GetExitCodeProcess function retrieves the termination status of the specified process. BOOL GetExitCodeProcess(
      HANDLE hProcess,     // handle to the process
      LPDWORD lpExitCode   // address to receive termination status
    );
     
    Parameters
    hProcess 
    Handle to the process. 
    Windows NT: The handle must have PROCESS_QUERY_INFORMATION access. lpExitCode 
    Pointer to a 32-bit variable to receive the process termination status. 
    Return Values
    If the function succeeds, the return value is nonzero.If the function fails, the return value is zero. To get extended error information, call GetLastError. Res
    If the specified process has not terminated, the termination status returned is STILL_ACTIVE. If the process has terminated, the termination status returned may be one of the following: 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. 
      

  2.   

    线程也有一个函数GetExitCodeThread(...,...);
      

  3.   

    GetExitCodeThread
    The GetExitCodeThread function retrieves the termination status of the specified thread. BOOL GetExitCodeThread(
      HANDLE hThread,      // handle to the thread
      LPDWORD lpExitCode   // address to receive termination status
    );
     
    Parameters
    hThread 
    Handle to the thread. 
    Windows NT: The handle must have THREAD_QUERY_INFORMATION access. lpExitCode 
    Pointer to a 32-bit variable to receive the thread termination status. 
    Return Values
    If the function succeeds, the return value is nonzero.If the function fails, the return value is zero. To get extended error information, call GetLastError. Res
    If the specified thread has not terminated, the termination status returned is STILL_ACTIVE. If the thread has terminated, the termination status returned may be one of the following: The exit value specified in the ExitThread or TerminateThread function. 
    The return value from the thread function. 
    The exit value of the thread's process. 
    QuickInfo
      

  4.   

    没有一个叫做 什么*** still alife 的函数吗!!
      

  5.   

    看看WaitMutiObject,WaitSingleObject函数吧