EDC6062S
DLL constructors or destructors did not complete, so DLL cannot be used.

Explanation

A DLL being loaded or freed was in the process of running static constructors or destructors but the process did not complete (probably because the thread was abnormally terminated). The DLL is left in an indeterminate state. Another thread that was waiting for the constructors or destructors to complete while attempting a load or free of the same DLL detected this error.

System action

The application ends with return code 3000.

Programmer response

Determine the cause of the incomplete constructor or destructor process. Ensure that the constructors or destructors are not the cause of the thread termination that lead to this condition.

Symbolic Feedback Code

EDC5TE