The SIMCONNECT_CAMERA_AVAILABILITY enum is used to define the availability of the currently acquired camera.

Syntax
enum SIMCONNECT_CAMERA_AVAILABILITY
{
    SIMCONNECT_CAMERA_NOT_ACQUIRED,
    SIMCONNECT_CAMERA_ACQUIRED,
    SIMCONNECT_CAMERA_ACQUIRED_BY_OTHER,
    SIMCONNECT_CAMERA_USER_DISABLED
};
Members
MemberDescription
SIMCONNECT_CAMERA_NOT_ACQUIREDThere is no add-on camera acquired.
SIMCONNECT_CAMERA_ACQUIREDThe add-on camera has been acquired.
SIMCONNECT_CAMERA_ACQUIRED_BY_OTHERSome other client has acquired the add-on camera.
SIMCONNECT_CAMERA_USER_DISABLEDThe add-on camera has been disabled by the user in the simulation options.
Remarks

This enum will be used by the SimConnect_CameraGetStatus and other camera functions.

0/255