Commit 44d2954e authored by Laurent Aimar's avatar Laurent Aimar

Do not use private VLM function (fixed in an ugly way). It should fix build

of libvlc-control (what's that ?).
 It will need to be rewritten when VLM API is fixed.
parent 3b17379d
......@@ -37,6 +37,13 @@ static void InitVLM( libvlc_instance_t *p_instance )
#endif
}
/* XXX this code has to be rewritten, disable it for now */
#define vlm_MediaNew( a, b, c) (NULL)
#define vlm_MediaDelete(a,b,c)
#define vlm_MediaSetup(a,b,c,d) (-1)
#define vlm_MediaControl(a,b,c,d,e) (-1)
#define vlm_MediaSearch(a,b) (NULL)
#define CHECK_VLM { if( !p_instance->p_vlm ) InitVLM( p_instance ); \
if( !p_instance->p_vlm ) {\
libvlc_exception_raise( p_exception, \
......
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