What does ExitCode -1073741502 mean?

前端 未结 2 2195
攒了一身酷
攒了一身酷 2021-01-05 02:08

I\'m using the GetExitCodeProcess API to determine the exit reason for a process.

When my process fails, I get the error code -1073741502.

How can this value

2条回答
  •  青春惊慌失措
    2021-01-05 02:43

    Converted to hexadecimal, the value is 0xC0000142.
    Windows NTSTATUS values show that your error code is STATUS_DLL_INIT_FAILED which is:

    {DLL Initialization Failed} Initialization of the dynamic link library %hs failed. The process is terminating abnormally.

提交回复
热议问题