]> git.sesse.net Git - vlc/blobdiff - src/missing.c
Win7: add support for the taskbar's "oh, look, it's shiny" buttons. We need prettier...
[vlc] / src / missing.c
index 9b41d23a255c366f6b5170347ec1936f5eb13564..ca8e92865c4124a8bf58ae680e67e246456c5efb 100644 (file)
@@ -81,7 +81,7 @@ httpd_handler_t *httpd_HandlerNew (httpd_host_t *host, const char *url,
                                    httpd_handler_callback_t cb,
                                    httpd_handler_sys_t *data)
 {
-    (void) host; (void) url; (void) content_type;
+    (void) host; (void) url;
     (void) login; (void) password; (void) acl;
     (void) cb; (void) data;
     assert (0);
@@ -360,11 +360,16 @@ void vlm_MessageDelete (vlm_message_t *m)
     assert (0);
 }
 
-vlm_message_t *vlm_MessageNew (const char *a, const char *fmt, ...)
+vlm_message_t *vlm_MessageSimpleNew (const char *a)
 {
     return NULL;
 }
 
+vlm_message_t *vlm_MessageNew (const char *a, const char *fmt, ...)
+{
+    return vlm_MessageSimpleNew (a);
+}
+
 vlm_t *__vlm_New (vlc_object_t *obj)
 {
      msg_Err (obj, "VLM not compiled-in!");