]> git.meshlink.io Git - catta/blobdiff - avahi-core/prioq.h
remove _ prefix from structure name (for doxygen)
[catta] / avahi-core / prioq.h
index 66510713432b096c4ff33f137868647b529842c3..e6105d8ffd3812de297e758672b6df3e623d2ba3 100644 (file)
 
 #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;