diff options
| author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-09-09 19:24:48 +0000 |
|---|---|---|
| committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-09-09 19:24:48 +0000 |
| commit | 6d580c1e2b663bea95a2107370b458fb58afda37 (patch) | |
| tree | 91400358abf6427a1e060d67a3aa6f98282974f1 /src/xine-engine/xine_internal.h | |
| parent | c8489f82948511ec9bbd97f7146ed4b772a89c7f (diff) | |
| download | xine-lib-6d580c1e2b663bea95a2107370b458fb58afda37.tar.gz xine-lib-6d580c1e2b663bea95a2107370b458fb58afda37.tar.bz2 | |
Remove so const abuse ;-)
CVS patchset: 2637
CVS date: 2002/09/09 19:24:48
Diffstat (limited to 'src/xine-engine/xine_internal.h')
| -rw-r--r-- | src/xine-engine/xine_internal.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index ad6a7b233..4dce3aa88 100644 --- a/src/xine-engine/xine_internal.h +++ b/src/xine-engine/xine_internal.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_internal.h,v 1.96 2002/09/06 18:13:12 mroi Exp $ + * $Id: xine_internal.h,v 1.97 2002/09/09 19:24:48 f1rmb Exp $ * */ @@ -149,7 +149,7 @@ struct xine_s { config_values_t *config; /* MRL of displayed logo */ - const char *logo_mrl; + char *logo_mrl; /* Logo manipulation mutex */ pthread_mutex_t logo_lock; @@ -218,7 +218,7 @@ struct xine_s { /* Array of event handlers. */ xine_event_listener_cb_t event_listeners[XINE_MAX_EVENT_LISTENERS]; - const void *event_listener_user_data[XINE_MAX_EVENT_LISTENERS]; + void *event_listener_user_data[XINE_MAX_EVENT_LISTENERS]; uint16_t num_event_listeners; /* scratch string buffer */ @@ -233,7 +233,7 @@ struct xine_s { int finished_thread_running; xine_report_codec_cb_t report_codec_cb; - const void *report_codec_user_data; + void *report_codec_user_data; int playing_logo; int curtime_needed_for_osd; @@ -244,7 +244,7 @@ struct xine_s { * private function prototypes: */ -int xine_open_internal (xine_t *this, const char *MRL); +int xine_open_internal (xine_t *this, char *mrl); int xine_play_internal (xine_t *this, int start_pos, int start_time); void xine_stop_internal (xine_t *this); |
