X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-core%2Fprioq.h;h=e6105d8ffd3812de297e758672b6df3e623d2ba3;hb=ae5476c763ae89cdef130397439b6746883cb1b5;hp=66510713432b096c4ff33f137868647b529842c3;hpb=c58379bde376cb2298fca14f83a86626f1b76f2f;p=catta 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;