mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
some commenting
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@298 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
6985eda934
commit
fa751e537d
12 changed files with 88 additions and 14 deletions
|
|
@ -24,8 +24,14 @@
|
|||
|
||||
struct pa_queue;
|
||||
|
||||
/* A simple implementation of the abstract data type queue. Stores
|
||||
* pointers as members. The memory has to be managed by the caller. */
|
||||
|
||||
struct pa_queue* pa_queue_new(void);
|
||||
|
||||
/* Free the queue and run the specified callback function for every remaining entry. The callback function may be NULL. */
|
||||
void pa_queue_free(struct pa_queue* q, void (*destroy)(void *p, void *userdata), void *userdata);
|
||||
|
||||
void pa_queue_push(struct pa_queue *q, void *p);
|
||||
void* pa_queue_pop(struct pa_queue *q);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue