From c526a85bcdb32f84e6ade05ce647a431f6a07c10 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 7 May 2005 13:57:19 +0000 Subject: remove _ prefix from structure name (for doxygen) git-svn-id: file:///home/lennart/svn/public/avahi/trunk@64 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- avahi-core/prioq.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'avahi-core/prioq.h') 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 -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; -- cgit