npapi-vlc | branch: master | Felix Paul Kühne <[email protected]> | Fri Feb 6 17:15:05 2015 +0100| [2cabaef1272aebe0f037473d1ee533ef5f041949] | committer: Felix Paul Kühne
events: remove useless statics > http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=2cabaef1272aebe0f037473d1ee533ef5f041949 --- npapi/events.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/npapi/events.cpp b/npapi/events.cpp index 35b5071..d647bd6 100644 --- a/npapi/events.cpp +++ b/npapi/events.cpp @@ -33,7 +33,7 @@ /***************************************************************************** * Event Object *****************************************************************************/ -static void handle_input_event(const libvlc_event_t* event, void *param) +void handle_input_event(const libvlc_event_t* event, void *param) { VlcPluginBase *plugin = (VlcPluginBase*)param; switch( event->type ) @@ -55,7 +55,7 @@ static void handle_input_event(const libvlc_event_t* event, void *param) } } -static void handle_changed_event(const libvlc_event_t* event, void *param) +void handle_changed_event(const libvlc_event_t* event, void *param) { uint32_t npcount = 1; NPVariant *npparam = (NPVariant *) NPN_MemAlloc( sizeof(NPVariant) * npcount ); _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
