Sophie

Sophie

distrib > Mandriva > 2011.0 > i586 > media > contrib-release-debug > by-pkgid > f1a9c0530f3781a033d9e23e23df02cd > files > 21

giblib-debug-1.2.4-8mdv2011.0.i586.rpm

/* gib_queue.h

Copyright (C) 1999,2000 Paul Duncan.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies of the Software and its documentation and acknowledgment shall be
given in the documentation and software packages that this Software was
used.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

*/


#ifndef _GIB_QUEUE_H_
#define _GIB_QUEUE_H_

#include <giblib/giblib_config.h>
#include <giblib/gib_list.h>

#define GIB_QUEUE(a) ((gib_queue*)a)

typedef struct __gib_queue gib_queue;

struct __gib_queue {
	gib_list *base;
};

#ifdef __cplusplus
extern "C"
{
#endif

gib_queue *gib_queue_new();
void       gib_queue_free(gib_queue *queue);

void       gib_queue_add(gib_queue *queue, void *data);

unsigned char  gib_queue_pending(gib_queue *queue);

void          *gib_queue_next(gib_queue *queue);
void          *gib_queue_peek(gib_queue *queue);

#ifdef __cplusplus
}
#endif

#endif /*_GIB_QUEUE_H_*/