annotate libaudacious/configdb.h @ 2052:5e7744e13f19 trunk

[svn] - what the hell is this, and why do we need it?
author nenolod
date Mon, 04 Dec 2006 02:18:02 -0800
parents 5cf8de9f2c28
children 53a3d5db6b58
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
1 #ifndef CONFIGDB_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
2 #define CONFIGDB_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
3
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
4 #include <glib.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
5
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
7 typedef struct _ConfigDb ConfigDb;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
8
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
9
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
10 G_BEGIN_DECLS
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
11
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
12 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
13 * bmp_cfg_db_open:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
14 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
15 * Opens the configuration database.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
16 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
17 * Return value: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
18 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
19 ConfigDb *bmp_cfg_db_open();
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
20
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
21 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
22 * bmp_cfg_db_close:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
23 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
24 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
25 * Closes the configuration database.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
26 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
27 void bmp_cfg_db_close(ConfigDb *db);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
28
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
29 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
30 * bmp_cfg_db_get_string:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
31 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
32 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
33 * @key: The name of the field in the configuration database to look up.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
34 * @value: Pointer to a buffer to put the data in.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
35 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
36 * Searches the configuration database for a value.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
37 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
38 * Return value: TRUE if successful, FALSE otherwise.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
39 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
40 gboolean bmp_cfg_db_get_string(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
41 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
42 const gchar *key,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
43 gchar **value);
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
44
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
45 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
46 * bmp_cfg_db_get_int:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
47 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
48 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
49 * @key: The name of the field in the configuration database to look up.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
50 * @value: Pointer to an integer to put the data in.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
51 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
52 * Searches the configuration database for a value.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
53 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
54 * Return value: TRUE if successful, FALSE otherwise.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
55 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
56 gboolean bmp_cfg_db_get_int(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
57 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
58 const gchar *key,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
59 gint *value);
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
60
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
61 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
62 * bmp_cfg_db_get_bool:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
63 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
64 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
65 * @key: The name of the field in the configuration database to look up.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
66 * @value: Pointer to a boolean to put the data in.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
67 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
68 * Searches the configuration database for a value.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
69 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
70 * Return value: TRUE if successful, FALSE otherwise.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
71 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
72 gboolean bmp_cfg_db_get_bool(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
73 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
74 const gchar *key,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
75 gboolean *value);
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
76
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
77 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
78 * bmp_cfg_db_get_float:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
79 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
80 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
81 * @key: The name of the field in the configuration database to look up.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
82 * @value: Pointer to a floating point integer to put the data in.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
83 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
84 * Searches the configuration database for a value.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
85 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
86 * Return value: TRUE if successful, FALSE otherwise.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
87 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
88 gboolean bmp_cfg_db_get_float(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
89 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
90 const gchar *key,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
91 gfloat *value);
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
92
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
93 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
94 * bmp_cfg_db_get_double:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
95 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
96 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
97 * @key: The name of the field in the configuration database to look up.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
98 * @value: Pointer to a double-precision floating point integer to put the data in.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
99 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
100 * Searches the configuration database for a value.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
101 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
102 * Return value: TRUE if successful, FALSE otherwise.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
103 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
104 gboolean bmp_cfg_db_get_double(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
105 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
106 const gchar *key,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
107 gdouble *value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
108
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
109 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
110 * bmp_cfg_db_set_string:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
111 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
112 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
113 * @key: The name of the field in the configuration database to set.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
114 * @value: Pointer to a buffer containing the data.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
115 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
116 * Sets a value in the configuration database.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
117 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
118 void bmp_cfg_db_set_string(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
119 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
120 const gchar *key,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
121 gchar *value);
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
122
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
123 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
124 * bmp_cfg_db_set_int:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
125 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
126 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
127 * @key: The name of the field in the configuration database to set.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
128 * @value: Pointer to an integer containing the data.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
129 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
130 * Sets a value in the configuration database.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
131 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
132 void bmp_cfg_db_set_int(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
133 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
134 const gchar *key,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
135 gint value);
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
136
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
137 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
138 * bmp_cfg_db_set_bool:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
139 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
140 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
141 * @key: The name of the field in the configuration database to set.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
142 * @value: Pointer to a boolean containing the data.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
143 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
144 * Sets a value in the configuration database.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
145 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
146 void bmp_cfg_db_set_bool(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
147 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
148 const gchar *key,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
149 gboolean value);
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
150
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
151 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
152 * bmp_cfg_db_set_float:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
153 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
154 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
155 * @key: The name of the field in the configuration database to set.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
156 * @value: Pointer to a floating point integer containing the data.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
157 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
158 * Sets a value in the configuration database.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
159 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
160 void bmp_cfg_db_set_float(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
161 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
162 const gchar *key,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
163 gfloat value);
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
164
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
165 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
166 * bmp_cfg_db_set_double:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
167 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
168 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
169 * @key: The name of the field in the configuration database to set.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
170 * @value: Pointer to a double precision floating point integer containing the data.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
171 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
172 * Sets a value in the configuration database.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
173 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
174 void bmp_cfg_db_set_double(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
175 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
176 const gchar *key,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
177 gdouble value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
178
2049
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
179 /**
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
180 * bmp_cfg_db_unset_key:
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
181 * @db: A configuration database handle.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
182 * @section: The section of the configuration database to search.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
183 * @key: The name of the field in the configuration database to set.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
184 *
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
185 * Removes a value from the configuration database.
5cf8de9f2c28 [svn] - document ConfigDB.
nenolod
parents: 0
diff changeset
186 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
187 void bmp_cfg_db_unset_key(ConfigDb *db,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
188 const gchar *section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
189 const gchar *key);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
190
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
191 G_END_DECLS
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
192
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
193 #endif // CONFIGDB_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
194