CAMERA_STATUS_CHANGED_PARAM
- Definition:
typedef struct tagCameraStatusChangedParam { CAMERA_STATUS status; char id[CAMERA_ID_LEN]; int error; } CAMERA_STATUS_CHANGED_PARAM;
- Expain:
CAMERA_STATUS_CHANGED_PARAM describe the return parameter when receiving CAMERA_STATUS_CHANGED event
Member | Expain |
---|---|
status | The status after changing |
id | Camera ID |
error | When status != DISCONNECTED, error is always ERROR_OK. When status = DISCONNECTED, error is the reason When status = DISCONNECTED and error = ERROR_OK, Means camera connection is normally broken, other reference error constants defined。 |