npapi-vlc | branch: master | Cheng Sun <[email protected]> | Thu Dec 22 20:00:55 2011 +0000| [103e3e43609004f0d9957c9cbec1e5666c1176c3] | committer: Jean-Baptiste Kempf
Correct source header comments Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=103e3e43609004f0d9957c9cbec1e5666c1176c3 --- npapi/vlcplugin_base.cpp | 3 ++- npapi/vlcplugin_base.h | 3 ++- npapi/vlcplugin_gtk.cpp | 23 +++++++++++++++++++++++ npapi/vlcplugin_gtk.h | 7 ++----- npapi/vlcplugin_mac.cpp | 26 ++++++++++++++++++++++++++ npapi/vlcplugin_mac.h | 2 +- npapi/vlcplugin_win.cpp | 26 ++++++++++++++++++++++++++ npapi/vlcplugin_win.h | 2 +- npapi/vlcplugin_xlib.cpp | 26 ++++++++++++++++++++++++++ npapi/vlcplugin_xlib.h | 2 +- 10 files changed, 110 insertions(+), 10 deletions(-) diff --git a/npapi/vlcplugin_base.cpp b/npapi/vlcplugin_base.cpp index fbdff1f..2fdead5 100644 --- a/npapi/vlcplugin_base.cpp +++ b/npapi/vlcplugin_base.cpp @@ -1,5 +1,5 @@ /***************************************************************************** - * vlcplugin.cpp: a VLC plugin for Mozilla + * vlcplugin_base.cpp: a VLC plugin for Mozilla ***************************************************************************** * Copyright (C) 2002-2010 the VideoLAN team * $Id$ @@ -7,6 +7,7 @@ * Authors: Samuel Hocevar <[email protected]> * Damien Fouilleul <[email protected]> * Jean-Paul Saman <[email protected]> + * Cheng Sun <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/npapi/vlcplugin_base.h b/npapi/vlcplugin_base.h index 67ffc3d..b2a230a 100644 --- a/npapi/vlcplugin_base.h +++ b/npapi/vlcplugin_base.h @@ -1,5 +1,5 @@ /***************************************************************************** - * vlcplugin.h: a VLC plugin for Mozilla + * vlcplugin_base.h: a VLC plugin for Mozilla ***************************************************************************** * Copyright (C) 2002-2009 the VideoLAN team * $Id$ @@ -7,6 +7,7 @@ * Authors: Samuel Hocevar <[email protected]> * Damien Fouilleul <[email protected]> * Jean-Paul Saman <[email protected]> + * Cheng Sun <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/npapi/vlcplugin_gtk.cpp b/npapi/vlcplugin_gtk.cpp index dc6ef9a..b544838 100644 --- a/npapi/vlcplugin_gtk.cpp +++ b/npapi/vlcplugin_gtk.cpp @@ -1,3 +1,26 @@ +/***************************************************************************** + * vlcplugin_gtk.cpp: a VLC plugin for Mozilla (GTK+ interface) + ***************************************************************************** + * Copyright (C) 2002-2010 the VideoLAN team + * $Id$ + * + * Authors: Cheng Sun <[email protected]> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + *****************************************************************************/ + #include "vlcplugin_gtk.h" #include <gdk/gdkx.h> #include <cstring> diff --git a/npapi/vlcplugin_gtk.h b/npapi/vlcplugin_gtk.h index 8797885..d53121c 100644 --- a/npapi/vlcplugin_gtk.h +++ b/npapi/vlcplugin_gtk.h @@ -1,13 +1,10 @@ /***************************************************************************** - * vlcplugin_gtk.h: a VLC plugin for Mozilla + * vlcplugin_gtk.h: a VLC plugin for Mozilla (GTK+ interface) ***************************************************************************** * Copyright (C) 2011 the VideoLAN team * $Id$ * - * Authors: Samuel Hocevar <[email protected]> - * Damien Fouilleul <[email protected]> - * Jean-Paul Saman <[email protected]> - * Cheng Sun <[email protected]> + * Authors: Cheng Sun <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/npapi/vlcplugin_mac.cpp b/npapi/vlcplugin_mac.cpp index 3ca889c..b37b68b 100644 --- a/npapi/vlcplugin_mac.cpp +++ b/npapi/vlcplugin_mac.cpp @@ -1,3 +1,29 @@ +/***************************************************************************** + * vlcplugin_mac.cpp: a VLC plugin for Mozilla (Mac interface) + ***************************************************************************** + * Copyright (C) 2011 the VideoLAN team + * $Id$ + * + * Authors: Samuel Hocevar <[email protected]> + * Damien Fouilleul <[email protected]> + * Jean-Paul Saman <[email protected]> + * Cheng Sun <[email protected]> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + *****************************************************************************/ + #include "vlcplugin_mac.h" VlcPluginMac::VlcPluginMac(NPP instance, NPuint16_t mode) : diff --git a/npapi/vlcplugin_mac.h b/npapi/vlcplugin_mac.h index 6dace61..1b1ad3f 100644 --- a/npapi/vlcplugin_mac.h +++ b/npapi/vlcplugin_mac.h @@ -1,5 +1,5 @@ /***************************************************************************** - * vlcplugin_mac.h: a VLC plugin for Mozilla + * vlcplugin_mac.h: a VLC plugin for Mozilla (Mac interface) ***************************************************************************** * Copyright (C) 2011 the VideoLAN team * $Id$ diff --git a/npapi/vlcplugin_win.cpp b/npapi/vlcplugin_win.cpp index a8f09f9..4e3b731 100644 --- a/npapi/vlcplugin_win.cpp +++ b/npapi/vlcplugin_win.cpp @@ -1,3 +1,29 @@ +/***************************************************************************** + * vlcplugin_win.cpp: a VLC plugin for Mozilla (Windows interface) + ***************************************************************************** + * Copyright (C) 2011 the VideoLAN team + * $Id$ + * + * Authors: Samuel Hocevar <[email protected]> + * Damien Fouilleul <[email protected]> + * Jean-Paul Saman <[email protected]> + * Cheng Sun <[email protected]> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + *****************************************************************************/ + #include "vlcplugin_win.h" #include "../common/win32_fullscreen.h" diff --git a/npapi/vlcplugin_win.h b/npapi/vlcplugin_win.h index 673997d..b3d1352 100644 --- a/npapi/vlcplugin_win.h +++ b/npapi/vlcplugin_win.h @@ -1,5 +1,5 @@ /***************************************************************************** - * vlcplugin_win.h: a VLC plugin for Mozilla + * vlcplugin_win.h: a VLC plugin for Mozilla (Windows interface) ***************************************************************************** * Copyright (C) 2011 the VideoLAN team * $Id$ diff --git a/npapi/vlcplugin_xlib.cpp b/npapi/vlcplugin_xlib.cpp index b3886b8..b556220 100644 --- a/npapi/vlcplugin_xlib.cpp +++ b/npapi/vlcplugin_xlib.cpp @@ -1,3 +1,29 @@ +/***************************************************************************** + * vlcplugin_xlib.cpp: a VLC plugin for Mozilla (X interface) + ***************************************************************************** + * Copyright (C) 2011 the VideoLAN team + * $Id$ + * + * Authors: Samuel Hocevar <[email protected]> + * Damien Fouilleul <[email protected]> + * Jean-Paul Saman <[email protected]> + * Cheng Sun <[email protected]> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + *****************************************************************************/ + #include "vlcplugin_xlib.h" #include <cstring> diff --git a/npapi/vlcplugin_xlib.h b/npapi/vlcplugin_xlib.h index 69fe03b..b568ba1 100644 --- a/npapi/vlcplugin_xlib.h +++ b/npapi/vlcplugin_xlib.h @@ -1,5 +1,5 @@ /***************************************************************************** - * vlcplugin_xlib.h: a VLC plugin for Mozilla + * vlcplugin_xlib.h: a VLC plugin for Mozilla (X interface) ***************************************************************************** * Copyright (C) 2011 the VideoLAN team * $Id$ _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
