summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/xine.h.in4
-rw-r--r--src/xine-engine/xine_interface.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/xine.h.in b/include/xine.h.in
index a9fb0aaf5..a440957a8 100644
--- a/include/xine.h.in
+++ b/include/xine.h.in
@@ -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.h.in,v 1.16 2002/09/18 00:51:33 guenter Exp $
+ * $Id: xine.h.in,v 1.17 2002/09/21 11:58:40 f1rmb Exp $
*
* public xine-lib (libxine) interface and documentation
*
@@ -1012,7 +1012,7 @@ void xine_osd_get_palette (xine_osd_p self, const uint32_t *color,
*/
/* dynamic info from actually linked libxine */
-
+const char *xine_get_version_string(void);
void xine_get_version (int *major, int *minor, int *sub);
/* compare given version to libxine version,
diff --git a/src/xine-engine/xine_interface.c b/src/xine-engine/xine_interface.c
index ff5cf14a2..8e82096a4 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.19 2002/09/21 11:39:45 f1rmb Exp $
+ * $Id: xine_interface.c,v 1.20 2002/09/21 11:58:40 f1rmb Exp $
*
* convenience/abstraction layer, functions to implement
* libxine's public interface
@@ -50,7 +50,7 @@
* version information / checking
*/
-char *xine_get_version_string(void) {
+const char *xine_get_version_string(void) {
return VERSION;
}