[vlc-devel] commit: Add vlm_MessageSimpleNew with --disable-vlm ( Rémi Denis-Courmont )
git version control
git at videolan.org
Thu Apr 9 11:03:14 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Thu Apr 9 12:02:57 2009 +0300| [e7b350ab82267e1187c41f2262f30fcdb8e797a6] | committer: Rémi Denis-Courmont
Add vlm_MessageSimpleNew with --disable-vlm
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e7b350ab82267e1187c41f2262f30fcdb8e797a6
---
src/missing.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/src/missing.c b/src/missing.c
index 3e678cf..ca8e928 100644
--- a/src/missing.c
+++ b/src/missing.c
@@ -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!");
More information about the vlc-devel
mailing list