summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-01-11 15:31:53 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-01-11 15:31:53 +0000
commit0a92222cd6d61053030db17a713e65b09ddb7a70 (patch)
tree03ef9200ac76bf3d0dea0dc4d5816df5ae3f36c3 /src
parent0ddbb4150502adccb85a9815d084892b6f092d6a (diff)
downloadxine-lib-0a92222cd6d61053030db17a713e65b09ddb7a70.tar.gz
xine-lib-0a92222cd6d61053030db17a713e65b09ddb7a70.tar.bz2
allowing a const pointer here, since this will remove the need for a cast
in frontends; this change is ABI-wise equivalent to adding a new function CVS patchset: 6022 CVS date: 2004/01/11 15:31:53
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/xine_interface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/xine_interface.c b/src/xine-engine/xine_interface.c
index 63d4297eb..02aa35abd 100644
--- a/src/xine-engine/xine_interface.c
+++ b/src/xine-engine/xine_interface.c
@@ -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_interface.c,v 1.75 2003/12/31 23:29:06 jcdutton Exp $
+ * $Id: xine_interface.c,v 1.76 2004/01/11 15:31:53 mroi Exp $
*
* convenience/abstraction layer, functions to implement
* libxine's public interface
@@ -709,7 +709,7 @@ const char *const *xine_post_list_outputs(xine_post_t *this_gen) {
return this->output_ids;
}
-xine_post_in_t *xine_post_input(xine_post_t *this_gen, char *name) {
+xine_post_in_t *xine_post_input(xine_post_t *this_gen, const char *name) {
post_plugin_t *this = (post_plugin_t *)this_gen;
xine_post_in_t *input;
@@ -722,7 +722,7 @@ xine_post_in_t *xine_post_input(xine_post_t *this_gen, char *name) {
return NULL;
}
-xine_post_out_t *xine_post_output(xine_post_t *this_gen, char *name) {
+xine_post_out_t *xine_post_output(xine_post_t *this_gen, const char *name) {
post_plugin_t *this = (post_plugin_t *)this_gen;
xine_post_out_t *output;