diff src/xmms-sid.h @ 24:271be59be975

Lots of changes
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 07 Jun 2003 12:42:05 +0000
parents 279b1e12df2b
children 1788f4ce6a44
line wrap: on
line diff
--- a/src/xmms-sid.h	Sat Jun 07 12:42:05 2003 +0000
+++ b/src/xmms-sid.h	Sat Jun 07 12:42:05 2003 +0000
@@ -29,15 +29,15 @@
 extern "C" {
 #endif
 
+#include <config.h>
 #include <glib.h>
 #include <xmms/plugin.h>
 
 /*
  * Generals
  */
-#define XMMS_SID_NAME		"XMMS-SID"	/* Plugin name */
-#define XMMS_SID_CONFIG_IDENT	"XMMS-SID"	/* Configuration file identifier */
-#define XMMS_SID_BUFSIZE	4096		/* Size for some buffers */
+#define XS_CONFIG_IDENT		"XMMS-SID"	/* Configuration file identifier */
+#define XS_BUFSIZE		(4096)		/* Size for some buffers */
 
 
 extern InputPlugin xs_plugin_ip;
@@ -56,9 +56,8 @@
 int	xs_get_time(void);
 void	xs_get_song_info(char *, char **, int *);
 // void	xs_file_info_box(char *);
-
+void	xs_aboutbox(void);
 
-#define	LWW lookup_widget
 
 /*
  * Debugging and error handling macros
@@ -69,7 +68,7 @@
 #define XSDEBUG(x...) /* foo */
 #endif
 
-#define XSERR(x...) { fprintf(stderr, XMMS_SID_NAME ": "); fprintf(stderr, ## x); }
+#define XSERR(x...) { fprintf(stderr, PACKAGE_NAME ": "); fprintf(stderr, ## x); }
 
 
 #ifdef __cplusplus