summaryrefslogtreecommitdiffstats
path: root/xbmc
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2015-03-10 00:33:13 +0100
committermanuel <manuel@mausz.at>2015-03-10 00:33:13 +0100
commit96fb8d016fe50ba67d830ce6a965b988b8fea942 (patch)
tree75e78ecda6b0f071e015f7add65f7cc677797450 /xbmc
parent01db5526106f75599d84dbe61e419fb9cc3d1298 (diff)
downloadkodi-pvr-build-96fb8d016fe50ba67d830ce6a965b988b8fea942.tar.gz
kodi-pvr-build-96fb8d016fe50ba67d830ce6a965b988b8fea942.tar.bz2
kodi-pvr-build-96fb8d016fe50ba67d830ce6a965b988b8fea942.zip
sync with upstream
Diffstat (limited to 'xbmc')
-rw-r--r--xbmc/addons/addon-bindings.mk2
-rw-r--r--xbmc/addons/include/xbmc_epg_types.h1
-rw-r--r--xbmc/addons/include/xbmc_pvr_dll.h6
-rw-r--r--xbmc/addons/include/xbmc_pvr_types.h5
4 files changed, 7 insertions, 7 deletions
diff --git a/xbmc/addons/addon-bindings.mk b/xbmc/addons/addon-bindings.mk
index 4a33cfd..e7185a7 100644
--- a/xbmc/addons/addon-bindings.mk
+++ b/xbmc/addons/addon-bindings.mk
@@ -15,7 +15,7 @@ BINDINGS+=xbmc/addons/include/xbmc_vis_dll.h
15BINDINGS+=xbmc/addons/include/xbmc_vis_types.h 15BINDINGS+=xbmc/addons/include/xbmc_vis_types.h
16BINDINGS+=xbmc/addons/include/xbmc_stream_utils.hpp 16BINDINGS+=xbmc/addons/include/xbmc_stream_utils.hpp
17BINDINGS+=addons/library.xbmc.addon/libXBMC_addon.h 17BINDINGS+=addons/library.xbmc.addon/libXBMC_addon.h
18BINDINGS+=addons/library.xbmc.gui/libXBMC_gui.h 18BINDINGS+=addons/library.kodi.guilib/libKODI_guilib.h
19BINDINGS+=addons/library.xbmc.pvr/libXBMC_pvr.h 19BINDINGS+=addons/library.xbmc.pvr/libXBMC_pvr.h
20BINDINGS+=addons/library.xbmc.codec/libXBMC_codec.h 20BINDINGS+=addons/library.xbmc.codec/libXBMC_codec.h
21BINDINGS+=xbmc/cores/dvdplayer/DVDDemuxers/DVDDemuxPacket.h 21BINDINGS+=xbmc/cores/dvdplayer/DVDDemuxers/DVDDemuxPacket.h
diff --git a/xbmc/addons/include/xbmc_epg_types.h b/xbmc/addons/include/xbmc_epg_types.h
index 97cea40..ceac074 100644
--- a/xbmc/addons/include/xbmc_epg_types.h
+++ b/xbmc/addons/include/xbmc_epg_types.h
@@ -88,7 +88,6 @@ extern "C" {
88 int iEpisodeNumber; /*!< @brief (optional) episode number */ 88 int iEpisodeNumber; /*!< @brief (optional) episode number */
89 int iEpisodePartNumber; /*!< @brief (optional) episode part number */ 89 int iEpisodePartNumber; /*!< @brief (optional) episode part number */
90 const char * strEpisodeName; /*!< @brief (optional) episode name */ 90 const char * strEpisodeName; /*!< @brief (optional) episode name */
91 const char * strRecordingId; /*!< @brief (optional) unique id of the recording on the client which represents this event */
92 } ATTRIBUTE_PACKED EPG_TAG; 91 } ATTRIBUTE_PACKED EPG_TAG;
93 92
94#ifdef __cplusplus 93#ifdef __cplusplus
diff --git a/xbmc/addons/include/xbmc_pvr_dll.h b/xbmc/addons/include/xbmc_pvr_dll.h
index 3ad46fc..5280399 100644
--- a/xbmc/addons/include/xbmc_pvr_dll.h
+++ b/xbmc/addons/include/xbmc_pvr_dll.h
@@ -176,7 +176,7 @@ extern "C"
176 * Show the channel scan dialog if this backend supports it. 176 * Show the channel scan dialog if this backend supports it.
177 * @return PVR_ERROR_NO_ERROR if the dialog was displayed successfully. 177 * @return PVR_ERROR_NO_ERROR if the dialog was displayed successfully.
178 * @remarks Required if bSupportsChannelScan is set to true. Return PVR_ERROR_NOT_IMPLEMENTED if this add-on won't provide this function. 178 * @remarks Required if bSupportsChannelScan is set to true. Return PVR_ERROR_NOT_IMPLEMENTED if this add-on won't provide this function.
179 * @note see libXBMC_gui.h about related parts 179 * @note see libKODI_guilib.h about related parts
180 */ 180 */
181 PVR_ERROR OpenDialogChannelScan(void); 181 PVR_ERROR OpenDialogChannelScan(void);
182 182
@@ -227,7 +227,7 @@ extern "C"
227 * @param channel The channel to show the dialog for. 227 * @param channel The channel to show the dialog for.
228 * @return PVR_ERROR_NO_ERROR if the dialog has been displayed successfully. 228 * @return PVR_ERROR_NO_ERROR if the dialog has been displayed successfully.
229 * @remarks Required if bSupportsChannelSettings is set to true. 229 * @remarks Required if bSupportsChannelSettings is set to true.
230 * @note see libXBMC_gui.h about related parts 230 * @note see libKODI_guilib.h about related parts
231 */ 231 */
232 PVR_ERROR OpenDialogChannelSettings(const PVR_CHANNEL& channel); 232 PVR_ERROR OpenDialogChannelSettings(const PVR_CHANNEL& channel);
233 233
@@ -236,7 +236,7 @@ extern "C"
236 * @param channel The channel to add. 236 * @param channel The channel to add.
237 * @return PVR_ERROR_NO_ERROR if the channel has been added successfully. 237 * @return PVR_ERROR_NO_ERROR if the channel has been added successfully.
238 * @remarks Required if bSupportsChannelSettings is set to true. 238 * @remarks Required if bSupportsChannelSettings is set to true.
239 * @note see libXBMC_gui.h about related parts 239 * @note see libKODI_guilib.h about related parts
240 */ 240 */
241 PVR_ERROR OpenDialogChannelAdd(const PVR_CHANNEL& channel); 241 PVR_ERROR OpenDialogChannelAdd(const PVR_CHANNEL& channel);
242 //@} 242 //@}
diff --git a/xbmc/addons/include/xbmc_pvr_types.h b/xbmc/addons/include/xbmc_pvr_types.h
index 5285bd1..5716e51 100644
--- a/xbmc/addons/include/xbmc_pvr_types.h
+++ b/xbmc/addons/include/xbmc_pvr_types.h
@@ -75,10 +75,10 @@ struct DemuxPacket;
75#define PVR_STREAM_MAX_STREAMS 20 75#define PVR_STREAM_MAX_STREAMS 20
76 76
77/* current PVR API version */ 77/* current PVR API version */
78#define XBMC_PVR_API_VERSION "1.9.4" 78#define XBMC_PVR_API_VERSION "1.9.5"
79 79
80/* min. PVR API version */ 80/* min. PVR API version */
81#define XBMC_PVR_MIN_API_VERSION "1.9.4" 81#define XBMC_PVR_MIN_API_VERSION "1.9.5"
82 82
83#ifdef __cplusplus 83#ifdef __cplusplus
84extern "C" { 84extern "C" {
@@ -299,6 +299,7 @@ extern "C" {
299 int iPlayCount; /*!< @brief (optional) play count of this recording on the client */ 299 int iPlayCount; /*!< @brief (optional) play count of this recording on the client */
300 int iLastPlayedPosition; /*!< @brief (optional) last played position of this recording on the client */ 300 int iLastPlayedPosition; /*!< @brief (optional) last played position of this recording on the client */
301 bool bIsDeleted; /*!< @brief (optional) shows this recording is deleted and can be undelete */ 301 bool bIsDeleted; /*!< @brief (optional) shows this recording is deleted and can be undelete */
302 unsigned int iEpgEventId; /*!< @brief (optional) EPG event id associated with this recording */
302 } ATTRIBUTE_PACKED PVR_RECORDING; 303 } ATTRIBUTE_PACKED PVR_RECORDING;
303 304
304 /*! 305 /*!