Mercurial > audlegacy
comparison src/audacious/eventqueue.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 | 6f6982108001 |
| children | cf6711eeb12f |
comparison
equal
deleted
inserted
replaced
| 4556:332d2992e04c | 4557:2eee464379dc |
|---|---|
| 20 | 20 |
| 21 #include <glib.h> | 21 #include <glib.h> |
| 22 | 22 |
| 23 #include "audacious/hook.h" | 23 #include "audacious/hook.h" |
| 24 | 24 |
| 25 #ifndef __AUDACIOUS_EVENTQUEUE_H__ | 25 #ifndef AUDACIOUS_EVENTQUEUE_H |
| 26 #define __AUDACIOUS_EVENTQUEUE_H__ | 26 #define AUDACIOUS_EVENTQUEUE_H |
| 27 | 27 |
| 28 typedef struct { | 28 typedef struct { |
| 29 gchar *name; | 29 gchar *name; |
| 30 gpointer *user_data; | 30 gpointer *user_data; |
| 31 } HookCallQueue; | 31 } HookCallQueue; |
| 32 | 32 |
| 33 void event_queue(const gchar *name, gpointer user_data); | 33 void event_queue(const gchar *name, gpointer user_data); |
| 34 void event_queue_timed(gint time, const gchar *name, gpointer user_data); | 34 void event_queue_timed(gint time, const gchar *name, gpointer user_data); |
| 35 | 35 |
| 36 #endif | 36 #endif /* AUDACIOUS_EVENTQUEUE_H */ |
