# SimConnect_SubscribeToCameraWorldLockerStatusUpdate The **SimConnect\_SubscribeToCameraWorldLockerStatusUpdate** function is used to receive a `SIMCONNECT_RECV_CAMERA_WORLD_LOCKER_STATUS` message whenever the simulation updates the camera status.   ##### Syntax ``` cpp HRESULT SimConnect_SubscribeToCameraWorldLockerStatusUpdate( 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_SubscribeToCameraStatusUpdate(hSimConnect); ```   ##### Remarks N/A