diff src/xmms-sid.h @ 72:e3b205a6bc7e

Lots re-arranging and new code for upcoming modularization.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 12 Sep 2003 03:26:04 +0000
parents bf7b647b3239
children 2bc607888f53
line wrap: on
line diff
--- a/src/xmms-sid.h	Wed Sep 10 06:21:04 2003 +0000
+++ b/src/xmms-sid.h	Fri Sep 12 03:26:04 2003 +0000
@@ -34,6 +34,7 @@
 #include <xmms/plugin.h>
 #include <assert.h>
 
+
 /*
  * Generals
  */
@@ -47,8 +48,20 @@
 #define XS_MIN_OVERSAMPLE	(2)		/* Minimum oversampling factor */
 #define XS_MAX_OVERSAMPLE	(8)		/* Maximum oversampling factor */
 
+extern InputPlugin xs_plugin_ip;		/* XMMS-SID plugin structure */
 
-extern InputPlugin xs_plugin_ip;		/* XMMS-SID plugin structure */
+
+
+typedef struct {
+	void			*currConf;
+	void			*currEng;
+	gboolean		isError, isPlaying, allowNext;
+	gint			currSong, nSongs;
+	void			*currTune;
+	gchar			*currFileName;
+} t_xs_status;
+
+extern t_xs_status xs_status;
 
 
 /*