comparison src/audacious/tuple.h @ 4557:2eee464379dc

Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 May 2008 01:29:46 +0300
parents 5a0f5ef1de61
children
comparison
equal deleted inserted replaced
4556:332d2992e04c 4557:2eee464379dc
16 * 16 *
17 * The Audacious team does not consider modular code linking to 17 * The Audacious team does not consider modular code linking to
18 * Audacious or using our public API to be a derived work. 18 * Audacious or using our public API to be a derived work.
19 */ 19 */
20 20
21 #ifndef __AUDACIOUS_TUPLE_H__ 21 #ifndef AUDACIOUS_TUPLE_H
22 #define __AUDACIOUS_TUPLE_H__ 22 #define AUDACIOUS_TUPLE_H
23 23
24 #include <glib.h> 24 #include <glib.h>
25 #include <mowgli.h> 25 #include <mowgli.h>
26 26
27 G_BEGIN_DECLS 27 G_BEGIN_DECLS
101 gint tuple_get_int(Tuple *tuple, const gint nfield, const gchar *field); 101 gint tuple_get_int(Tuple *tuple, const gint nfield, const gchar *field);
102 #define tuple_free(x) mowgli_object_unref(x); 102 #define tuple_free(x) mowgli_object_unref(x);
103 103
104 G_END_DECLS 104 G_END_DECLS
105 105
106 #endif /* __AUDACIOUS_TUPLE_H__ */ 106 #endif /* AUDACIOUS_TUPLE_H */