[vlc-commits] events: remove useless statics
Felix Paul Kühne
git at videolan.org
Fri Feb 6 17:15:07 CET 2015
npapi-vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | 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 );
More information about the vlc-commits
mailing list