summaryrefslogtreecommitdiffstats
path: root/avahi-core/prioq.h
diff options
context:
space:
mode:
Diffstat (limited to 'avahi-core/prioq.h')
-rw-r--r--avahi-core/prioq.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/avahi-core/prioq.h b/avahi-core/prioq.h
index 6651071..e6105d8 100644
--- a/avahi-core/prioq.h
+++ b/avahi-core/prioq.h
@@ -24,20 +24,18 @@
#include <glib.h>
-struct _AvahiPrioQueue;
-typedef struct _AvahiPrioQueue AvahiPrioQueue;
+typedef struct AvahiPrioQueue AvahiPrioQueue;
-struct _AvahiPrioQueueNode;
-typedef struct _AvahiPrioQueueNode AvahiPrioQueueNode;
+typedef struct AvahiPrioQueueNode AvahiPrioQueueNode;
-struct _AvahiPrioQueue {
+struct AvahiPrioQueue {
AvahiPrioQueueNode *root, *last;
guint n_nodes;
gint (*compare) (gconstpointer a, gconstpointer b);
};
-struct _AvahiPrioQueueNode {
+struct AvahiPrioQueueNode {
AvahiPrioQueue *queue;
gpointer data;
guint x, y;