summaryrefslogtreecommitdiffstats
path: root/avahi-core/prioq.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-05-07 13:57:19 +0000
committerLennart Poettering <lennart@poettering.net>2005-05-07 13:57:19 +0000
commitc526a85bcdb32f84e6ade05ce647a431f6a07c10 (patch)
treec4a80ea4571bd4213c4c4e5c62abe39b0114c730 /avahi-core/prioq.h
parent6f87f1b86b2a2232f0c9fa7b3fa516410bb38995 (diff)
remove _ prefix from structure name (for doxygen)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@64 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
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;