summaryrefslogtreecommitdiffstats
path: root/xbmc/addons/kodi-dev-kit/include/kodi/c-api/filesystem.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2021-03-04 23:36:40 +0100
committermanuel <manuel@mausz.at>2021-03-04 23:36:40 +0100
commit3cb8aa05f8cee9e860cf83531682ff0ed4af6a4f (patch)
tree921f4829b32126f80f9113c124f2e14c0ebce8d9 /xbmc/addons/kodi-dev-kit/include/kodi/c-api/filesystem.h
parentbe933ef2241d79558f91796cc5b3a161f72ebf9c (diff)
downloadkodi-pvr-build-3cb8aa05f8cee9e860cf83531682ff0ed4af6a4f.tar.gz
kodi-pvr-build-3cb8aa05f8cee9e860cf83531682ff0ed4af6a4f.tar.bz2
kodi-pvr-build-3cb8aa05f8cee9e860cf83531682ff0ed4af6a4f.zip
sync with upstreamMatrix
Diffstat (limited to 'xbmc/addons/kodi-dev-kit/include/kodi/c-api/filesystem.h')
-rw-r--r--xbmc/addons/kodi-dev-kit/include/kodi/c-api/filesystem.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/xbmc/addons/kodi-dev-kit/include/kodi/c-api/filesystem.h b/xbmc/addons/kodi-dev-kit/include/kodi/c-api/filesystem.h
index 70f9400..4290cb9 100644
--- a/xbmc/addons/kodi-dev-kit/include/kodi/c-api/filesystem.h
+++ b/xbmc/addons/kodi-dev-kit/include/kodi/c-api/filesystem.h
@@ -6,8 +6,6 @@
6 * See LICENSES/README.md for more information. 6 * See LICENSES/README.md for more information.
7 */ 7 */
8 8
9#pragma once
10
11#ifndef C_API_FILESYSTEM_H 9#ifndef C_API_FILESYSTEM_H
12#define C_API_FILESYSTEM_H 10#define C_API_FILESYSTEM_H
13 11
@@ -106,16 +104,15 @@ extern "C"
106 /// @brief **CURL message types**\n 104 /// @brief **CURL message types**\n
107 /// Used on kodi::vfs::CFile::CURLAddOption(). 105 /// Used on kodi::vfs::CFile::CURLAddOption().
108 /// 106 ///
109 //@{ 107 ///@{
110 typedef enum CURLOptiontype 108 typedef enum CURLOptiontype
111 { 109 {
112 /// @brief Set a general option. 110 /// @brief Set a general option.
113 ADDON_CURL_OPTION_OPTION, 111 ADDON_CURL_OPTION_OPTION,
114 112
115 /// @brief Set a protocol option. 113 /// @brief Set a protocol option.\n
116 /// 114 ///\n
117 /// The following names for *ADDON_CURL_OPTION_PROTOCOL* are possible: 115 /// The following names for *ADDON_CURL_OPTION_PROTOCOL* are possible:
118 ///
119 /// | Option name | Description 116 /// | Option name | Description
120 /// |------------------------------------:|:-------------------------------- 117 /// |------------------------------------:|:--------------------------------
121 /// | <b>`accept-charset`</b> | Set the "accept-charset" header 118 /// | <b>`accept-charset`</b> | Set the "accept-charset" header
@@ -140,7 +137,7 @@ extern "C"
140 /// @brief Add a Header 137 /// @brief Add a Header
141 ADDON_CURL_OPTION_HEADER 138 ADDON_CURL_OPTION_HEADER
142 } CURLOptiontype; 139 } CURLOptiontype;
143 //@} 140 ///@}
144 //---------------------------------------------------------------------------- 141 //----------------------------------------------------------------------------
145 142
146 //============================================================================ 143 //============================================================================
@@ -151,7 +148,7 @@ extern "C"
151 /// 148 ///
152 /// Used on kodi::vfs::CFile::GetPropertyValue() and kodi::vfs::CFile::GetPropertyValues(). 149 /// Used on kodi::vfs::CFile::GetPropertyValue() and kodi::vfs::CFile::GetPropertyValues().
153 /// 150 ///
154 //@{ 151 ///@{
155 typedef enum FilePropertyTypes 152 typedef enum FilePropertyTypes
156 { 153 {
157 /// @brief Get protocol response line. 154 /// @brief Get protocol response line.
@@ -167,7 +164,7 @@ extern "C"
167 /// @brief Get file effective URL (last one if redirected). 164 /// @brief Get file effective URL (last one if redirected).
168 ADDON_FILE_PROPERTY_EFFECTIVE_URL 165 ADDON_FILE_PROPERTY_EFFECTIVE_URL
169 } FilePropertyTypes; 166 } FilePropertyTypes;
170 //@} 167 ///@}
171 //---------------------------------------------------------------------------- 168 //----------------------------------------------------------------------------
172 169
173 //}}} 170 //}}}