application: Winform
Lib: VLC1.1.4
Language: C#
problem :
i'm tryin to trigger an event in my winform C# to update the scroll bar for the player. I'm looking @ a C# wrapper that has almost all the functions in it (http://www.koders.com/csharp/fid04837E1 ... spx?s=file)
if anything relates to Events on this page it would be in the following sections
#region Event Manager Methods
[DllImport("libvlc")]
internal static extern void libvlc_event_attach(IntPtr p_event_manager, VlcEventType i_event_type, VlcCallback f_callback, IntPtr p_user_data, ref libvlc_exception_t p_exception);
[DllImport("libvlc")]
internal static extern void libvlc_event_detach(IntPtr p_event_manager, VlcEventType i_event_type, VlcCallback f_callback, IntPtr p_user_data, ref libvlc_exception_t p_exception);
[DllImport("libvlc")]
internal static extern string libvlc_event_type_name(VlcEventType event_type);
how would i create a event with this code ? is there something that im missing ? What else can i use from VLC1.1.4 to do it ?
Thank you, Sam E