diff src/xs_stil.h @ 657:acaba070cf49

Lots of cosmetic code cleanups; synced the de-gettextification from Audacious-SID, I suppose it makes some sense ...
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 02 Apr 2008 19:46:59 +0300
parents fa95d942f226
children b0743dc9165d
line wrap: on
line diff
--- a/src/xs_stil.h	Wed Mar 26 08:55:29 2008 +0200
+++ b/src/xs_stil.h	Wed Apr 02 19:46:59 2008 +0300
@@ -10,35 +10,34 @@
 /* Types
  */
 typedef struct {
-	gchar	*pName,
-		*pAuthor,
-		*pTitle,
-		*pInfo;
-} t_xs_stil_subnode;
+	gchar	*name,
+		*author,
+		*title,
+		*info;
+} stil_subnode_t;
 
 
-typedef struct _t_xs_stil_node {
-	gchar			*pcFilename;
+typedef struct _stil_node_t {
+	gchar			*filename;
 	gint			nsubTunes;
-	t_xs_stil_subnode	**subTunes;
-	
-	struct _t_xs_stil_node	*pPrev, *pNext;
-} t_xs_stil_node;
+	stil_subnode_t		**subTunes;
+	struct _stil_node_t	*prev, *next;
+} stil_node_t;
 
 
 typedef struct {
-	t_xs_stil_node	*pNodes,
-			**ppIndex;
+	stil_node_t	*nodes,
+			**pindex;
 	size_t		n;
-} t_xs_stildb;
+} xs_stildb_t;
 
 
 /* Functions
  */
-gint			xs_stildb_read(t_xs_stildb *, gchar *);
-gint			xs_stildb_index(t_xs_stildb *);
-void			xs_stildb_free(t_xs_stildb *);
-t_xs_stil_node *	xs_stildb_get_node(t_xs_stildb *, gchar *);
+gint			xs_stildb_read(xs_stildb_t *, gchar *);
+gint			xs_stildb_index(xs_stildb_t *);
+void			xs_stildb_free(xs_stildb_t *);
+stil_node_t *	xs_stildb_get_node(xs_stildb_t *, gchar *);
 
 #ifdef __cplusplus
 }