Commit 33487c3c authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

libvlc: Don't use enum directly, it's a bad pratice for ABI compat.

parent a640b2a3
...@@ -251,7 +251,7 @@ VLC_PUBLIC_API void libvlc_free( void *ptr ); ...@@ -251,7 +251,7 @@ VLC_PUBLIC_API void libvlc_free( void *ptr );
typedef struct libvlc_event_manager_t libvlc_event_manager_t; typedef struct libvlc_event_manager_t libvlc_event_manager_t;
typedef struct libvlc_event_t libvlc_event_t; typedef struct libvlc_event_t libvlc_event_t;
typedef enum libvlc_event_type_t libvlc_event_type_t; typedef uint32_t libvlc_event_type_t;
/** /**
* Callback function notification * Callback function notification
......
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