# SIMCONNECT_CAMERA_AVAILABILITY The **SIMCONNECT\_CAMERA\_AVAILABILITY** enum is used to define the availability of the currently acquired camera.   ##### Syntax ``` cpp enum SIMCONNECT_CAMERA_AVAILABILITY { SIMCONNECT_CAMERA_NOT_ACQUIRED, SIMCONNECT_CAMERA_ACQUIRED, SIMCONNECT_CAMERA_ACQUIRED_BY_OTHER, SIMCONNECT_CAMERA_USER_DISABLED }; ```   ##### Members {{< table-wrapper >}} | Member | Description | |---------------------------------------|----------------------------------------------------------------------------| | `SIMCONNECT_CAMERA_NOT_ACQUIRED` | There is no add-on camera acquired. | | `SIMCONNECT_CAMERA_ACQUIRED` | The add-on camera has been acquired. | | `SIMCONNECT_CAMERA_ACQUIRED_BY_OTHER` | Some other client has acquired the add-on camera. | | `SIMCONNECT_CAMERA_USER_DISABLED` | The add-on camera has been disabled by the user in the simulation options. | {{< /table-wrapper >}}   ##### Remarks This enum will be used by the `SimConnect_CameraGetStatus` and other camera functions.