ovr_AssetFile_Delete ( ovrID assetFileID ) | |
ovr_AssetFile_DeleteById ( ovrID assetFileID ) | |
ovr_AssetFile_DeleteByName ( const char * assetFileName ) | |
ovr_AssetFile_Download ( ovrID assetFileID ) | |
ovr_AssetFile_DownloadById ( ovrID assetFileID ) | |
ovr_AssetFile_DownloadByName ( const char * assetFileName ) | |
ovr_AssetFile_DownloadCancel ( ovrID assetFileID ) | |
ovr_AssetFile_DownloadCancelById ( ovrID assetFileID ) | |
ovr_AssetFile_DownloadCancelByName ( const char * assetFileName ) | |
ovr_AssetFile_Status ( ovrID assetFileID ) | |
ovr_AssetFile_StatusById ( ovrID assetFileID ) | |
ovr_AssetFile_StatusByName ( const char * assetFileName ) |
ovrRequest ovr_AssetFile_Delete ( ovrID assetFileID ) |
---|
DEPRECATED. Use ovr_AssetFile_DeleteById() A message with type ovrMessage_AssetFile_Delete will be generated in response. First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetFileDeleteResultHandle. Extract the payload from the message handle with ovr_Message_GetAssetFileDeleteResult(). |
ovrRequest ovr_AssetFile_DeleteById ( ovrID assetFileID ) |
---|
Removes an previously installed asset file from the device by its ID. Returns an object containing the asset ID and file name, and a success flag. Parameters
A message with type ovrMessage_AssetFile_DeleteById will be generated in response.assetFileID The asset file ID First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetFileDeleteResultHandle. Extract the payload from the message handle with ovr_Message_GetAssetFileDeleteResult(). |
ovrRequest ovr_AssetFile_DeleteByName ( const char * assetFileName ) |
---|
Removes an previously installed asset file from the device by its name. Returns an object containing the asset ID and file name, and a success flag. Parameters
A message with type ovrMessage_AssetFile_DeleteByName will be generated in response.assetFileName The asset file name First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetFileDeleteResultHandle. Extract the payload from the message handle with ovr_Message_GetAssetFileDeleteResult(). |
ovrRequest ovr_AssetFile_Download ( ovrID assetFileID ) |
---|
DEPRECATED. Use ovr_AssetFile_DownloadById() A message with type ovrMessage_AssetFile_Download will be generated in response. First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetFileDownloadResultHandle. Extract the payload from the message handle with ovr_Message_GetAssetFileDownloadResult(). |
ovrRequest ovr_AssetFile_DownloadById ( ovrID assetFileID ) |
---|
Downloads an asset file by its ID on demand. Returns an object containing the asset ID and filepath. Sends periodic ovrNotification_AssetFile_DownloadUpdate to track the downloads. Parameters
A message with type ovrMessage_AssetFile_DownloadById will be generated in response.assetFileID The asset file ID First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetFileDownloadResultHandle. Extract the payload from the message handle with ovr_Message_GetAssetFileDownloadResult(). |
ovrRequest ovr_AssetFile_DownloadByName ( const char * assetFileName ) |
---|
Downloads an asset file by its name on demand. Returns an object containing the asset ID and filepath. Sends periodic {notifications.asset_file.download_update}} to track the downloads. Parameters
A message with type ovrMessage_AssetFile_DownloadByName will be generated in response.assetFileName The asset file name First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetFileDownloadResultHandle. Extract the payload from the message handle with ovr_Message_GetAssetFileDownloadResult(). |
ovrRequest ovr_AssetFile_DownloadCancel ( ovrID assetFileID ) |
---|
DEPRECATED. Use ovr_AssetFile_DownloadCancelById() A message with type ovrMessage_AssetFile_DownloadCancel will be generated in response. First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetFileDownloadCancelResultHandle. Extract the payload from the message handle with ovr_Message_GetAssetFileDownloadCancelResult(). |
ovrRequest ovr_AssetFile_DownloadCancelById ( ovrID assetFileID ) |
---|
Cancels a previously spawned download request for an asset file by its ID. Returns an object containing the asset ID and file path, and a success flag. Parameters
A message with type ovrMessage_AssetFile_DownloadCancelById will be generated in response.assetFileID The asset file ID First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetFileDownloadCancelResultHandle. Extract the payload from the message handle with ovr_Message_GetAssetFileDownloadCancelResult(). |
ovrRequest ovr_AssetFile_DownloadCancelByName ( const char * assetFileName ) |
---|
Cancels a previously spawned download request for an asset file by its name. Returns an object containing the asset ID and file path, and a success flag. Parameters
A message with type ovrMessage_AssetFile_DownloadCancelByName will be generated in response.assetFileName The asset file name First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetFileDownloadCancelResultHandle. Extract the payload from the message handle with ovr_Message_GetAssetFileDownloadCancelResult(). |
ovrRequest ovr_AssetFile_GetList ( ) |
---|
Returns an array of objects with asset file names and their associated IDs, and and whether it's currently installed. A message with type ovrMessage_AssetFile_GetList will be generated in response. First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetDetailsArrayHandle. Extract the payload from the message handle with ovr_Message_GetAssetDetailsArray(). |
ovrRequest ovr_AssetFile_Status ( ovrID assetFileID ) |
---|
DEPRECATED. Use ovr_AssetFile_StatusById() A message with type ovrMessage_AssetFile_Status will be generated in response. First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetDetailsHandle. Extract the payload from the message handle with ovr_Message_GetAssetDetails(). |
ovrRequest ovr_AssetFile_StatusById ( ovrID assetFileID ) |
---|
Returns the details on a single asset: ID, file name, and whether it's currently installed Parameters
A message with type ovrMessage_AssetFile_StatusById will be generated in response.assetFileID The asset file ID First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetDetailsHandle. Extract the payload from the message handle with ovr_Message_GetAssetDetails(). |
ovrRequest ovr_AssetFile_StatusByName ( const char * assetFileName ) |
---|
Returns the details on a single asset: ID, file name, and whether it's currently installed Parameters
A message with type ovrMessage_AssetFile_StatusByName will be generated in response.assetFileName The asset file name First call ovr_Message_IsError() to check if an error occurred. If no error occurred, the message will contain a payload of type ovrAssetDetailsHandle. Extract the payload from the message handle with ovr_Message_GetAssetDetails(). |