comparison src/audacious/flow.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 6f4068a0f291
children
comparison
equal deleted inserted replaced
4556:332d2992e04c 4557:2eee464379dc
23 #include <glib.h> 23 #include <glib.h>
24 #include <mowgli.h> 24 #include <mowgli.h>
25 25
26 #include "output.h" 26 #include "output.h"
27 27
28 #ifndef __AUDACIOUS_FLOW_H__ 28 #ifndef AUDACIOUS_FLOW_H
29 #define __AUDACIOUS_FLOW_H__ 29 #define AUDACIOUS_FLOW_H
30 30
31 typedef struct { 31 typedef struct {
32 gint time; 32 gint time;
33 gpointer data; 33 gpointer data;
34 gsize len; 34 gsize len;
57 void flow_link_element(Flow *flow, FlowFunction func); 57 void flow_link_element(Flow *flow, FlowFunction func);
58 void flow_unlink_element(Flow *flow, FlowFunction func); 58 void flow_unlink_element(Flow *flow, FlowFunction func);
59 59
60 #define flow_destroy(flow) mowgli_object_unref(flow) 60 #define flow_destroy(flow) mowgli_object_unref(flow)
61 61
62 #endif 62 #endif /* AUDACIOUS_FLOW_H */