Commit 4eea1289 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Mozilla: More fixes for XulRunner 1.9.2

parent 5f687f53
......@@ -46,6 +46,7 @@
#endif
#include <stdio.h>
#include <assert.h>
/*****************************************************************************
* utilitiy functions
......@@ -105,7 +106,11 @@ static void plugin_unlock(plugin_lock_t *lock)
/*****************************************************************************
* VlcPlugin constructor and destructor
*****************************************************************************/
#if (((NP_VERSION_MAJOR << 8) + NP_VERSION_MINOR) < 20)
VlcPlugin::VlcPlugin( NPP instance, uint16 mode ) :
#else
VlcPlugin::VlcPlugin( NPP instance, uint16_t mode ) :
#endif
i_npmode(mode),
b_stream(0),
b_autoplay(1),
......
......@@ -29,6 +29,7 @@
# include <mozilla-config.h>
#endif
char * NPP_GetMIMEDescription( void );
NPError NPP_Initialize( void );
......@@ -38,8 +39,14 @@ jref NPP_GetJavaClass( void );
#endif
void NPP_Shutdown( void );
#if (((NP_VERSION_MAJOR << 8) + NP_VERSION_MINOR) < 20)
NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
char* argn[], char* argv[], NPSavedData* saved );
#else
NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc,
char* argn[], char* argv[], NPSavedData* saved );
#endif
NPError NPP_Destroy( NPP instance, NPSavedData** save );
NPError NPP_GetValue( NPP instance, NPPVariable variable, void *value );
......
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