summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-15 14:14:09 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-15 14:14:09 +0000
commitcb06345c8834eba720bd6ce45554f963d9dddc3d (patch)
tree019d260b0436bea891139d5d6afb9d7b9b0f57b7 /src
parent0a8ac9501bf5385d3088183de3b0b63d6c018579 (diff)
downloadxine-lib-cb06345c8834eba720bd6ce45554f963d9dddc3d.tar.gz
xine-lib-cb06345c8834eba720bd6ce45554f963d9dddc3d.tar.bz2
Mark special_info a pointer to const value, as now all the data is const.
CVS patchset: 8038 CVS date: 2006/06/15 14:14:09
Diffstat (limited to 'src')
-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 e9a50ff14..df914a3f1 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.19 2005/09/24 19:08:26 miguelfreitas Exp $
+ * $Id: xine_plugin.h,v 1.20 2006/06/15 14:14:09 dgp85 Exp $
*
* generic plugin definitions
*
@@ -55,7 +55,7 @@ typedef struct {
uint8_t API; /* API version supported by 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 */
+ const void *special_info; /* plugin-type specific, see structs below */
void *(*init)(xine_t *, void *); /* init the plugin class */
} plugin_info_t;