]> git.sesse.net Git - vlc/blobdiff - modules/access/mms/mmsh.h
playlist: Make sure we don't pl_Release(p_playlist).
[vlc] / modules / access / mms / mmsh.h
index bf25ac0b9a33a593f0907348f40cfe7cfa15a6a6..3a2aa695df4179aa618e0d30b5cd1e20929633c9 100644 (file)
@@ -21,6 +21,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifndef _MMSH_H_
+#define _MMSH_H_ 1
+
 typedef struct
 {
     uint16_t i_type;
@@ -44,14 +47,14 @@ struct access_sys_t
     int             fd;
     vlc_url_t       url;
 
-    vlc_bool_t      b_proxy;
+    bool      b_proxy;
     vlc_url_t       proxy;
 
     int             i_request_context;
 
     uint8_t         buffer[BUFFER_SIZE + 1];
 
-    vlc_bool_t      b_broadcast;
+    bool      b_broadcast;
 
     uint8_t         *p_header;
     int             i_header;
@@ -66,3 +69,5 @@ struct access_sys_t
     asf_header_t    asfh;
     guid_t          guid;
 };
+
+#endif