# SIMCONNECT_MISSION_END The **SIMCONNECT\_MISSION\_END** enumeration type is used to specify the three possible outcomes of a mission.   ##### Syntax ``` cpp enum SIMCONNECT_MISSION_END { SIMCONNECT_MISSION_FAILED, SIMCONNECT_MISSION_CRASHED, SIMCONNECT_MISSION_SUCCEEDED }; ```   ##### Members {{< table-wrapper >}} | Member | Description | |--------------------------------|--------------------------------------------------------| | `SIMCONNECT_MISSION_FAILED` | The mission failed for some reason other than a crash. | | `SIMCONNECT_MISSION_CRASHED` | The mission failed because of a crash. | | `SIMCONNECT_MISSION_SUCCEEDED` | The mission was completed successfully. | {{< /table-wrapper >}}   ##### Remarks N/A