]> git.sesse.net Git - vlc/blobdiff - include/vlc_xml.h
ML: Remove asserts in vlc_media_library.h
[vlc] / include / vlc_xml.h
index 1b600b73f2e15942a01195817bb6a29b07b5b50b..497fc7f9334d62a7f4f19983f6ca362a3665fa8e 100644 (file)
 #ifndef VLC_XML_H
 #define VLC_XML_H
 
+/**
+ * \file
+ * This file defines functions and structures to handle xml tags in vlc
+ *
+ */
+
 # ifdef __cplusplus
 extern "C" {
 # endif
@@ -44,8 +50,8 @@ struct xml_t
                                const char * );
 };
 
-#define xml_Create( a ) __xml_Create( VLC_OBJECT(a) )
-VLC_EXPORT( xml_t *, __xml_Create, ( vlc_object_t * ) );
+VLC_EXPORT( xml_t *, xml_Create, ( vlc_object_t * ) );
+#define xml_Create( a ) xml_Create( VLC_OBJECT(a) )
 VLC_EXPORT( void, xml_Delete, ( xml_t * ) );
 
 #define xml_ReaderCreate( a, b ) a->pf_reader_create( a, b )