summaryrefslogtreecommitdiffstats
path: root/xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h')
-rw-r--r--xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h b/xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h
index 8c509ac..27fa800 100644
--- a/xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h
+++ b/xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h
@@ -316,7 +316,7 @@ extern "C"
316 /*! 316 /*!
317 * Set the last watched position of a recording on the backend. 317 * Set the last watched position of a recording on the backend.
318 * @param recording The recording. 318 * @param recording The recording.
319 * @param position The last watched position in seconds 319 * @param lastplayedposition The last watched position in seconds
320 * @return PVR_ERROR_NO_ERROR if the position has been stored successfully. 320 * @return PVR_ERROR_NO_ERROR if the position has been stored successfully.
321 * @remarks Required if bSupportsLastPlayedPosition is set to true. 321 * @remarks Required if bSupportsLastPlayedPosition is set to true.
322 * Return PVR_ERROR_NOT_IMPLEMENTED if this add-on won't provide this function. 322 * Return PVR_ERROR_NOT_IMPLEMENTED if this add-on won't provide this function.
@@ -483,7 +483,7 @@ extern "C"
483 483
484 /*! 484 /*!
485 * Get the stream properties for a recording from the backend. 485 * Get the stream properties for a recording from the backend.
486 * @param[in] channel The recording to get the stream properties for. 486 * @param[in] recording The recording to get the stream properties for.
487 * @param[inout] properties in: an array for the properties to return, out: the properties required to play the stream. 487 * @param[inout] properties in: an array for the properties to return, out: the properties required to play the stream.
488 * @param[inout] iPropertiesCount in: the size of the properties array, out: the number of properties returned. 488 * @param[inout] iPropertiesCount in: the size of the properties array, out: the number of properties returned.
489 * @return PVR_ERROR_NO_ERROR if the stream is available. 489 * @return PVR_ERROR_NO_ERROR if the stream is available.
@@ -676,7 +676,9 @@ extern "C"
676 void OnPowerSavingDeactivated(); 676 void OnPowerSavingDeactivated();
677 677
678 /*! 678 /*!
679 * Get stream times. Intermediate, will be moved to inputstream 679 * Get stream times.
680 * @param times A pointer to the data to be filled by the implementation.
681 * @return PVR_ERROR_NO_ERROR on success.
680 */ 682 */
681 PVR_ERROR GetStreamTimes(PVR_STREAM_TIMES *times); 683 PVR_ERROR GetStreamTimes(PVR_STREAM_TIMES *times);
682 684