diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-09-11 17:41:07 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-09-11 17:41:07 +0000 |
commit | e610c72a772656ef2c0a730348fccb28b130795c (patch) | |
tree | 18e0db1179294b49b156b152b4baed200e032bf4 /src/xine-engine/xine_internal.h | |
parent | a714f92ea4ea2b2406697f17dd9f59b47831eb8a (diff) | |
download | xine-lib-e610c72a772656ef2c0a730348fccb28b130795c.tar.gz xine-lib-e610c72a772656ef2c0a730348fccb28b130795c.tar.bz2 |
- more programming guidelines in public xine header
- make most char pointers const in public api
- simpler get_spu_lang / get_audio_lang signature
CVS patchset: 2651
CVS date: 2002/09/11 17:41:07
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index 4dce3aa88..189a04191 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.97 2002/09/09 19:24:48 f1rmb Exp $ + * $Id: xine_internal.h,v 1.98 2002/09/11 17:41:08 guenter Exp $ * */ @@ -221,8 +221,10 @@ struct xine_s { void *event_listener_user_data[XINE_MAX_EVENT_LISTENERS]; uint16_t num_event_listeners; - /* scratch string buffer */ + /* scratch string buffers */ char str[1024]; + char spu_lang[80]; + char audio_lang[80]; /* log output that may be presented to the user */ scratch_buffer_t *log_buffers[XINE_LOG_NUM]; @@ -244,7 +246,7 @@ struct xine_s { * private function prototypes: */ -int xine_open_internal (xine_t *this, char *mrl); +int xine_open_internal (xine_t *this, const char *mrl); int xine_play_internal (xine_t *this, int start_pos, int start_time); void xine_stop_internal (xine_t *this); |