]> git.sesse.net Git - vlc/blobdiff - src/misc/xml.c
lower case the module_* functions
[vlc] / src / misc / xml.c
index c9f16fbc6d7408339a3c0e73a319d514cc6f2e6a..ba6b75c3da608f1513b21c608a343eb180879ad9 100644 (file)
@@ -25,9 +25,9 @@
 # include "config.h"
 #endif
 
-#include <vlc/vlc.h>
-
+#include <vlc_common.h>
 #include "vlc_xml.h"
+#include "../libvlc.h"
 
 /*****************************************************************************
  * xml_Create:
@@ -43,7 +43,7 @@ xml_t *__xml_Create( vlc_object_t *p_this )
                                "xml" );
     vlc_object_attach( p_xml, p_this );
 
-    p_xml->p_module = module_Need( p_xml, "xml", 0, 0 );
+    p_xml->p_module = module_need( p_xml, "xml", 0, 0 );
     if( !p_xml->p_module )
     {
         vlc_object_detach( p_xml );
@@ -60,7 +60,7 @@ xml_t *__xml_Create( vlc_object_t *p_this )
  *****************************************************************************/
 void xml_Delete( xml_t *p_xml )
 {
-    module_Unneed( p_xml, p_xml->p_module );
+    module_unneed( p_xml, p_xml->p_module );
     vlc_object_detach( p_xml );
     vlc_object_release( p_xml );
 }