diff th_config.h @ 152:b4e1b15a64e1

Rename qlist_t doubly linked list structure to th_llist_t.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 06 Feb 2015 23:04:08 +0200
parents 51eec969b07a
children 4cd94649475d
line wrap: on
line diff
--- a/th_config.h	Wed Jan 28 08:06:02 2015 +0200
+++ b/th_config.h	Fri Feb 06 23:04:08 2015 +0200
@@ -44,7 +44,7 @@
         BOOL *val_bool;
 
         void *data;
-        qlist_t **list;
+        th_llist_t **list;
         struct _th_cfgitem_t *section;
     } v;
     
@@ -67,7 +67,7 @@
 int     th_cfg_add_bool(th_cfgitem_t **cfg, const char *name, BOOL *data, BOOL itemDef);
 int     th_cfg_add_float(th_cfgitem_t **cfg, const char *name, float *data, float itemDef);
 int     th_cfg_add_hexvalue(th_cfgitem_t **cfg, const char *name, int *data, int itemDef);
-int     th_cfg_add_string_list(th_cfgitem_t **cfg, const char *name, qlist_t **list);
+int     th_cfg_add_string_list(th_cfgitem_t **cfg, const char *name, th_llist_t **list);
 
 th_cfgitem_t *th_cfg_find(th_cfgitem_t *cfg, const char *section, const char *name, const int type);