diff src/xs_stil.h @ 751:55eea3fa8868

Rename some structures.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 05 Nov 2012 18:42:57 +0200
parents 4bf845090a25
children 693594421516
line wrap: on
line diff
--- a/src/xs_stil.h	Mon Nov 05 17:53:22 2012 +0200
+++ b/src/xs_stil.h	Mon Nov 05 18:42:57 2012 +0200
@@ -14,30 +14,30 @@
           *author,
           *title,
           *info;
-} stil_subnode_t;
+} XSSTILSubNode;
 
 
-typedef struct _stil_node_t {
+typedef struct _XSSTILNode {
     gchar               *filename;
     gint                nsubTunes;
-    stil_subnode_t      **subTunes;
-    struct _stil_node_t *prev, *next;
-} stil_node_t;
+    XSSTILSubNode      **subTunes;
+    struct _XSSTILNode *prev, *next;
+} XSSTILNode;
 
 
 typedef struct {
-    stil_node_t *nodes,
+    XSSTILNode *nodes,
                 **pindex;
     size_t      n;
-} xs_stildb_t;
+} XSSTILDB;
 
 
 /* Functions
  */
-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 *);
+gint            xs_stildb_read(XSSTILDB *, gchar *);
+gint            xs_stildb_index(XSSTILDB *);
+void            xs_stildb_free(XSSTILDB *);
+XSSTILNode *   xs_stildb_get_node(XSSTILDB *, gchar *);
 
 #ifdef __cplusplus
 }