~woodrow-shen/totem/mybranch

« back to all changes in this revision

Viewing changes to browser-plugin/totemPluginGlue.h

Tags: 2.24.3-3
* totem-mozilla.docs: ship README.browser-plugin which explains how to 
  disable the plugin for some MIME types.
* rules: remove the hack that only let totem-xine support VCDs and 
  DVDs, now that GStreamer supports them. Closes: #370789.
* 01_fake_keypresses.patch: new patch. Completely disable the broken 
  XTEST code that generates fake keypresses. Closes: #500330.
* 90_autotools.patch: regenerated.
* Build-depend on nautilus 2.22 to be sure to build the extension for 
  the correct version.
* totem-xine depends on libxine1-x.
* Standards version is 3.8.1.
* Upload to unstable.
* 04_tracker_build.patch: new patch, stolen upstream. Fix build with 
  latest tracker version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Totem Mozilla plugin
2
 
 * 
3
 
 * Copyright (C) 2004-2006 Bastien Nocera <hadess@hadess.net>
4
 
 * Copyright (C) 2002 David A. Schleef <ds@schleef.org>
5
 
 * Copyright (C) 2006 Christian Persch
6
 
 *
7
 
 * This library is free software; you can redistribute it and/or
8
 
 * modify it under the terms of the GNU Library General Public
9
 
 * License as published by the Free Software Foundation; either
10
 
 * version 2 of the License, or (at your option) any later version.
11
 
 *
12
 
 * This library is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 
 * Library General Public License for more details.
16
 
 *
17
 
 * You should have received a copy of the GNU Library General Public
18
 
 * License along with this library; if not, write to the
19
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20
 
 * Boston, MA 02111-1307, USA.
21
 
 */
22
 
 
23
 
#ifndef __TOTEM_PLUGIN_GLUE_H__
24
 
#define __TOTEM_PLUGIN_GLUE_H__
25
 
 
26
 
#if defined(TOTEM_BASIC_PLUGIN)
27
 
#include "totemBasicPlugin.h"
28
 
#elif defined(TOTEM_GMP_PLUGIN)
29
 
#include "totemGMPPlugin.h"
30
 
#elif defined(TOTEM_COMPLEX_PLUGIN)
31
 
#include "totemComplexPlugin.h"
32
 
#elif defined(TOTEM_NARROWSPACE_PLUGIN)
33
 
#include "totemNarrowSpacePlugin.h"
34
 
#elif defined(TOTEM_MULLY_PLUGIN)
35
 
#include "totemMullYPlugin.h"
36
 
#elif defined(TOTEM_CONE_PLUGIN)
37
 
#include "totemConePlugin.h"
38
 
#else
39
 
#error Unknown plugin type
40
 
#endif
41
 
 
42
 
#endif /* !__TOTEM_PLUGIN_GLUE_H__ */