comparison src/audacious/dnd.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 de33c83aa06f
children
comparison
equal deleted inserted replaced
4556:332d2992e04c 4557:2eee464379dc
21 * 21 *
22 * The Audacious team does not consider modular code linking to 22 * The Audacious team does not consider modular code linking to
23 * Audacious or using our public API to be a derived work. 23 * Audacious or using our public API to be a derived work.
24 */ 24 */
25 25
26 #ifndef DND_H 26 #ifndef AUDACIOUS_DND_H
27 #define DND_H 27 #define AUDACIOUS_DND_H
28 28
29 #include <gtk/gtk.h> 29 #include <gtk/gtk.h>
30 30
31 /* Designate dropped data types that we know and care about */ 31 /* Designate dropped data types that we know and care about */
32 enum { 32 enum {
46 {"application/x-font-ttf", 0, BMP_DROP_FONT}, 46 {"application/x-font-ttf", 0, BMP_DROP_FONT},
47 }; 47 };
48 48
49 void aud_drag_dest_set(GtkWidget*); 49 void aud_drag_dest_set(GtkWidget*);
50 50
51 #endif 51 #endif /* AUDACIOUS_DND_H */