X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_xml.h;h=51850c3bfb3e261d757e0c059f8811314c9e9040;hb=5ca3019168c0617ca08b34b140c2cb97b36dcec6;hp=fde4b7fad6f327674fc98b87cd5776a57403fab3;hpb=fbb8255dcf8ced858d59927cb17c4f577a8d9c15;p=vlc diff --git a/include/vlc_xml.h b/include/vlc_xml.h index fde4b7fad6..51850c3bfb 100644 --- a/include/vlc_xml.h +++ b/include/vlc_xml.h @@ -21,8 +21,14 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#ifndef _VLC_XML_H -#define _VLC_XML_H +#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" { @@ -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 * ) LIBVLC_USED ); +#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 )