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

Remove RAISEVOID

parent 564122b4
...@@ -110,8 +110,6 @@ void libvlc_event_attach_async( libvlc_event_manager_t * p_event_manager, ...@@ -110,8 +110,6 @@ void libvlc_event_attach_async( libvlc_event_manager_t * p_event_manager,
#define RAISENULL( ... ) { libvlc_exception_raise( p_e, __VA_ARGS__ ); \ #define RAISENULL( ... ) { libvlc_exception_raise( p_e, __VA_ARGS__ ); \
return NULL; } return NULL; }
#define RAISEVOID( ... ) { libvlc_exception_raise( p_e, __VA_ARGS__ ); \
return; }
#define RAISEZERO( ... ) { libvlc_exception_raise( p_e, __VA_ARGS__ ); \ #define RAISEZERO( ... ) { libvlc_exception_raise( p_e, __VA_ARGS__ ); \
return 0; } return 0; }
......
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