]> git.sesse.net Git - vlc/blob - projects/mozilla/vlcshell.h
VLCKit: Remove contrib dependency files.
[vlc] / projects / mozilla / vlcshell.h
1 /*****************************************************************************
2  * vlcshell.hp:
3  *****************************************************************************
4  * Copyright (C) 2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Paul Saman <jpsaman@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef __VLCSHELL_H__
25 #define __VLCSHELL_H__
26
27 char * NPP_GetMIMEDescription( void );
28
29 NPError NPP_Initialize( void );
30 jref NPP_GetJavaClass( void );
31 void NPP_Shutdown( void );
32
33 NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
34                  char* argn[], char* argv[], NPSavedData* saved );
35 NPError NPP_Destroy( NPP instance, NPSavedData** save );
36
37 NPError NPP_GetValue( NPP instance, NPPVariable variable, void *value );
38 NPError NPP_SetValue( NPP instance, NPNVariable variable, void *value );
39
40 NPError NPP_SetWindow( NPP instance, NPWindow* window );
41
42 NPError NPP_NewStream( NPP instance, NPMIMEType type, NPStream *stream,
43                        NPBool seekable, uint16 *stype );
44 NPError NPP_DestroyStream( NPP instance, NPStream *stream, NPError reason );
45 void NPP_StreamAsFile( NPP instance, NPStream *stream, const char* fname );
46
47 int32 NPP_WriteReady( NPP instance, NPStream *stream );
48 int32 NPP_Write( NPP instance, NPStream *stream, int32 offset,
49                  int32 len, void *buffer );
50
51 void NPP_URLNotify( NPP instance, const char* url,
52                     NPReason reason, void* notifyData );
53 void NPP_Print( NPP instance, NPPrint* printInfo );
54
55 #ifdef XP_MACOSX
56 int16 NPP_HandleEvent( NPP instance, void * event );
57 #endif
58
59 #endif