# SimConnect_UnsubscribeToCameraStatusUpdate The **SimConnect\_UnsubscribeToCameraStatusUpdate** function is used to unsubscribe from camera update messages.   ##### Syntax ``` cpp HRESULT SimConnect_UnsubscribeToCameraStatusUpdate( HANDLE hSimConnect ); ```   ##### Parameters {{< table-wrapper >}} | Parameter | Description | Type | |---------------|--------------------------------|---------| | *hSimConnect* | Handle to a SimConnect object. | Integer | {{< /table-wrapper >}}   ##### Return Values The function returns an **HRESULT**. Possible values include, but are not limited to, those in the following table. {{< table-wrapper >}} | Return value | Description | |--------------|-------------------------| | S\_OK | The function succeeded. | | E\_FAIL | The function failed. | {{< /table-wrapper >}}     ##### Example ``` cpp SimConnect_UnsubscribeToCameraStatusUpdate(hSimConnect); ```   ##### Remarks N/A