SIMCONNECT_CAMERA_AVAILABILITY

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
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.

 

Remarks

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

 

0/255