changeset 631:eafcd84a8c59

Constify more.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 03 Sep 2007 04:20:03 +0000
parents 8ece70f53d83
children 36ccf30d3d22
files src/xs_player.h src/xs_sidplay.h
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/xs_player.h	Mon Sep 03 04:08:02 2007 +0000
+++ b/src/xs_player.h	Mon Sep 03 04:20:03 2007 +0000
@@ -19,7 +19,7 @@
 	guint		(*plrFillBuffer)(struct t_xs_status *, gchar *, guint);
 	gboolean	(*plrLoadSID)(struct t_xs_status *, gchar *);
 	void		(*plrDeleteSID)(struct t_xs_status *);
-	t_xs_tuneinfo*	(*plrGetSIDInfo)(gchar *);
+	t_xs_tuneinfo*	(*plrGetSIDInfo)(const gchar *);
 	gboolean	(*plrUpdateSIDInfo)(struct t_xs_status *);
 	void		(*plrFlush)(struct t_xs_status *);
 } t_xs_player;
--- a/src/xs_sidplay.h	Mon Sep 03 04:08:02 2007 +0000
+++ b/src/xs_sidplay.h	Mon Sep 03 04:20:03 2007 +0000
@@ -26,7 +26,7 @@
  * (those variables that are only set by libSIDPlay when tune is initialized).
  * Rest of the information is acquired in TFUNCTION2()
  */
-t_xs_tuneinfo *TFUNCTION(gchar *sidFilename)
+t_xs_tuneinfo *TFUNCTION(const gchar *sidFilename)
 {
 	t_xs_tuneinfo *pResult;
 	TTUNEINFO myInfo;