diff src/xs_stil.h @ 392:b09d74eb71e6

Working on getting STIL and SLDB using completely dynamically allocated structures. Indentation cleanups, etc.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 31 May 2006 10:02:00 +0000
parents e0abd282d6b7
children a1224c1f8670
line wrap: on
line diff
--- a/src/xs_stil.h	Tue May 30 04:50:04 2006 +0000
+++ b/src/xs_stil.h	Wed May 31 10:02:00 2006 +0000
@@ -1,5 +1,5 @@
-#ifndef XS_STIL_H
-#define XS_STIL_H
+#ifndef _XS_STIL_H
+#define _XS_STIL_H
 
 #include "xmms-sid.h"
 
@@ -16,9 +16,12 @@
 		*pInfo;
 } t_xs_stil_subnode;
 
+
 typedef struct _t_xs_stil_node {
 	gchar			*pcFilename;
-	t_xs_stil_subnode	subTunes[XS_STIL_MAXENTRY+1];
+	gint			nsubTunes;
+	t_xs_stil_subnode	**subTunes;
+	
 	struct _t_xs_stil_node	*pPrev, *pNext;
 } t_xs_stil_node;
 
@@ -46,4 +49,4 @@
 #ifdef __cplusplus
 }
 #endif
-#endif /* XS_STIL_H */
+#endif /* _XS_STIL_H */