DWORD GetExitCode()

in src/VSIXBootstrapper.Shared/Process.h [96:107]


    DWORD GetExitCode() const
    {
        ThrowIfInvalidHandle();

        DWORD dwExitCode = 0;
        if (!_Traits::ProcessGetExitCode(m_hProcess, &dwExitCode))
        {
            throw win32_error();
        }

        return dwExitCode;
    }