summaryrefslogtreecommitdiff
path: root/src/xine-engine/xine_plugin.h
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-09-05 16:24:14 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-09-05 16:24:14 +0000
commit73323efba4f2da47ea7de0fcea2b022d0c297ded (patch)
tree0e833d3d6c01a83e8da33f64a6abe92aa44dd46e /src/xine-engine/xine_plugin.h
parent984d6daaac3b8d0da02efc7cb27a4b0586877395 (diff)
downloadxine-lib-73323efba4f2da47ea7de0fcea2b022d0c297ded.tar.gz
xine-lib-73323efba4f2da47ea7de0fcea2b022d0c297ded.tar.bz2
first steps towards implementing plugin list functions
CVS patchset: 2613 CVS date: 2002/09/05 16:24:14
Diffstat (limited to 'src/xine-engine/xine_plugin.h')
-rw-r--r--src/xine-engine/xine_plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/xine_plugin.h b/src/xine-engine/xine_plugin.h
index c9ebc6055..99297cc7e 100644
--- a/src/xine-engine/xine_plugin.h
+++ b/src/xine-engine/xine_plugin.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_plugin.h,v 1.2 2002/09/04 23:31:13 guenter Exp $
+ * $Id: xine_plugin.h,v 1.3 2002/09/05 16:24:14 guenter Exp $
*
* generic plugin definitions
*
@@ -39,7 +39,7 @@
typedef struct {
uint8_t type; /* one of the PLUGIN_* constants above */
uint8_t API; /* API version supported by this plugin */
- const char *id; /* a name that identifies this plugin */
+ char *id; /* a name that identifies this plugin */
uint32_t version; /* version number, increased every release */
void *special_info; /* plugin-type specific, see structs below */
void *(*init)(xine_t *, void *); /* used to get/initialize an instance*/