]> git.sesse.net Git - vlc/blobdiff - src/interface/interface.c
Ahem: (v)asprintf requires stdio.h; strndup requires string.h
[vlc] / src / interface / interface.c
index 4e9a59169fae1b94bae2e4fa684e25080d25429b..2c06f3d6c187d5fd0c53c618c1ae6ba81a6e28f2 100644 (file)
@@ -115,7 +115,7 @@ intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module,
     }
 
     /* Choose the best module */
-    p_intf->p_module = module_Need( p_intf, "interface", psz_module, 0 );
+    p_intf->p_module = module_Need( p_intf, "interface", psz_module, VLC_FALSE );
 
     if( p_intf->p_module == NULL )
     {
@@ -329,7 +329,9 @@ static void RunInterface( intf_thread_t *p_intf )
     static char *ppsz_interfaces[] =
     {
         "skins2", "Skins 2",
+#ifndef WIN32
         "wxwidgets", "wxWidgets",
+#endif
         NULL, NULL
     };
     char **ppsz_parser;