summaryrefslogtreecommitdiffstats
path: root/xbmc/addons
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2015-03-23 16:03:05 +0100
committermanuel <manuel@mausz.at>2015-03-23 16:03:05 +0100
commit0b9dd5668f1c090b820708b7b6144a3bd9b49729 (patch)
tree4436861fac268405e16e7b9920fd97c4a64eef09 /xbmc/addons
parent070914d3b4d7c1b391e76595ee8eb815d9aaf7f6 (diff)
downloadkodi-pvr-build-0b9dd5668f1c090b820708b7b6144a3bd9b49729.tar.gz
kodi-pvr-build-0b9dd5668f1c090b820708b7b6144a3bd9b49729.tar.bz2
kodi-pvr-build-0b9dd5668f1c090b820708b7b6144a3bd9b49729.zip
sync with upstream
Diffstat (limited to 'xbmc/addons')
-rw-r--r--xbmc/addons/include/xbmc_epg_types.h6
-rw-r--r--xbmc/addons/include/xbmc_pvr_types.h5
2 files changed, 9 insertions, 2 deletions
diff --git a/xbmc/addons/include/xbmc_epg_types.h b/xbmc/addons/include/xbmc_epg_types.h
index ceac074..efd7d13 100644
--- a/xbmc/addons/include/xbmc_epg_types.h
+++ b/xbmc/addons/include/xbmc_epg_types.h
@@ -76,6 +76,12 @@ extern "C" {
76 time_t endTime; /*!< @brief (required) end time in UTC */ 76 time_t endTime; /*!< @brief (required) end time in UTC */
77 const char * strPlotOutline; /*!< @brief (optional) plot outline */ 77 const char * strPlotOutline; /*!< @brief (optional) plot outline */
78 const char * strPlot; /*!< @brief (optional) plot */ 78 const char * strPlot; /*!< @brief (optional) plot */
79 const char * strOriginalTitle; /*!< @brief (optional) originaltitle */
80 const char * strCast; /*!< @brief (optional) cast */
81 const char * strDirector; /*!< @brief (optional) director */
82 const char * strWriter; /*!< @brief (optional) writer */
83 int iYear; /*!< @brief (optional) year */
84 const char * strIMDBNumber; /*!< @brief (optional) IMDBNumber */
79 const char * strIconPath; /*!< @brief (optional) icon path */ 85 const char * strIconPath; /*!< @brief (optional) icon path */
80 int iGenreType; /*!< @brief (optional) genre type */ 86 int iGenreType; /*!< @brief (optional) genre type */
81 int iGenreSubType; /*!< @brief (optional) genre sub type */ 87 int iGenreSubType; /*!< @brief (optional) genre sub type */
diff --git a/xbmc/addons/include/xbmc_pvr_types.h b/xbmc/addons/include/xbmc_pvr_types.h
index 5716e51..a2e4882 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.5" 78#define XBMC_PVR_API_VERSION "1.9.6"
79 79
80/* min. PVR API version */ 80/* min. PVR API version */
81#define XBMC_PVR_MIN_API_VERSION "1.9.5" 81#define XBMC_PVR_MIN_API_VERSION "1.9.6"
82 82
83#ifdef __cplusplus 83#ifdef __cplusplus
84extern "C" { 84extern "C" {
@@ -244,6 +244,7 @@ extern "C" {
244 { 244 {
245 char strGroupName[PVR_ADDON_NAME_STRING_LENGTH]; /*!< @brief (required) name of this channel group */ 245 char strGroupName[PVR_ADDON_NAME_STRING_LENGTH]; /*!< @brief (required) name of this channel group */
246 bool bIsRadio; /*!< @brief (required) true if this is a radio channel group, false otherwise. */ 246 bool bIsRadio; /*!< @brief (required) true if this is a radio channel group, false otherwise. */
247 unsigned int iPosition; /*!< @brief (optional) sort position of the group (0 indicates that the backend doesn't support sorting of groups) */
247 } ATTRIBUTE_PACKED PVR_CHANNEL_GROUP; 248 } ATTRIBUTE_PACKED PVR_CHANNEL_GROUP;
248 249
249 typedef struct PVR_CHANNEL_GROUP_MEMBER 250 typedef struct PVR_CHANNEL_GROUP_MEMBER