Commit e7b350ab authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Add vlm_MessageSimpleNew with --disable-vlm

parent cf105ef4
...@@ -360,11 +360,16 @@ void vlm_MessageDelete (vlm_message_t *m) ...@@ -360,11 +360,16 @@ void vlm_MessageDelete (vlm_message_t *m)
assert (0); assert (0);
} }
vlm_message_t *vlm_MessageNew (const char *a, const char *fmt, ...) vlm_message_t *vlm_MessageSimpleNew (const char *a)
{ {
return NULL; 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) vlm_t *__vlm_New (vlc_object_t *obj)
{ {
msg_Err (obj, "VLM not compiled-in!"); msg_Err (obj, "VLM not compiled-in!");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment