comparison src/audacious/playlist_container.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 1f7c00c1de22
children
comparison
equal deleted inserted replaced
4556:332d2992e04c 4557:2eee464379dc
17 * 17 *
18 * The Audacious team does not consider modular code linking to 18 * The Audacious team does not consider modular code linking to
19 * Audacious or using our public API to be a derived work. 19 * Audacious or using our public API to be a derived work.
20 */ 20 */
21 21
22 #ifndef _PLAYLIST_CONTAINER_H_ 22 #ifndef AUDACIOUS_PLAYLIST_CONTAINER_H
23 #define _PLAYLIST_CONTAINER_H_ 23 #define AUDACIOUS_PLAYLIST_CONTAINER_H
24 24
25 G_BEGIN_DECLS 25 G_BEGIN_DECLS
26 26
27 struct _PlaylistContainer { 27 struct _PlaylistContainer {
28 gchar *name; /* human-readable name */ 28 gchar *name; /* human-readable name */
41 extern void playlist_container_write(gchar *filename, gint pos); 41 extern void playlist_container_write(gchar *filename, gint pos);
42 extern PlaylistContainer *playlist_container_find(gchar *ext); 42 extern PlaylistContainer *playlist_container_find(gchar *ext);
43 43
44 G_END_DECLS 44 G_END_DECLS
45 45
46 #endif 46 #endif /* AUDACIOUS_PLAYLIST_CONTAINER_H */