gfsmPQueue.h
Go to the documentation of this file.
1 #ifndef GFSM_PQUEUE_H
2 #define GFSM_PQUEUE_H
3 
4 typedef struct s_gfsmPriorityQueue gfsmPriorityQueue;
5 
7 gfsm_pqueue_new (GCompareDataFunc cmp, gpointer cmp_data);
8 
9 void
11 
12 void
14 
15 gboolean
17 
18 gboolean
19 gfsm_pqueue_push (gfsmPriorityQueue *q, gpointer data);
20 
21 gpointer
23 
24 gpointer
25 gfsm_pqueue_find (gfsmPriorityQueue *q, gpointer data);
26 
27 gpointer
29 
30 #endif /* GFSM_PQUEUE_H */