# HG changeset patch # User Matti Hamalainen # Date 1188793203 0 # Node ID eafcd84a8c5966561f573dc5a1fe125eb9a6ea90 # Parent 8ece70f53d834e001aa9c9e1b9dd92bc363bbeed Constify more. diff -r 8ece70f53d83 -r eafcd84a8c59 src/xs_player.h --- 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; diff -r 8ece70f53d83 -r eafcd84a8c59 src/xs_sidplay.h --- 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;