# SimConnect_UnsubscribeToCameraWorldLockerStatusUpdate The **SimConnect\_UnsubscribeToCameraWorldLockerStatusUpdate** function is used to unsubscribe from camera world locker update messages.   ##### Syntax ``` cpp HRESULT SimConnect_UnsubscribeToCameraWorldLockerStatusUpdate( 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_UnsubscribeToCameraWorldLockerStatusUpdate(hSimConnect); ```   ##### Remarks N/A