Updated minor version number.
[wine/multimedia.git] / server / list.h
blob993aaaf2a11a7761de4850210d09cf905bd97740
1 /*
2 * Linked lists support
4 * Copyright (C) 2002 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef __WINE_SERVER_LIST_H
22 #define __WINE_SERVER_LIST_H
24 struct list
26 struct list *next;
27 struct list *prev;
30 /* add element at the head of the list */
31 inline static void list_add_head( struct list *list, struct list *elem )
33 elem->next = list->next;
34 elem->prev = list;
35 list->next->prev = elem;
36 list->next = elem;
39 /* add element at the tail of the list */
40 inline static void list_add_tail( struct list *list, struct list *elem )
42 elem->next = list;
43 elem->prev = list->prev;
44 list->prev->next = elem;
45 list->prev = elem;
48 /* remove an element from its list */
49 inline static void list_remove( struct list *elem )
51 elem->next->prev = elem->prev;
52 elem->prev->next = elem->next;
55 /* get the next element */
56 inline static struct list *list_next( struct list *list, struct list *elem )
58 struct list *ret = elem->next;
59 if (elem->next == list) ret = NULL;
60 return ret;
63 /* get the previous element */
64 inline static struct list *list_prev( struct list *list, struct list *elem )
66 struct list *ret = elem->prev;
67 if (elem->prev == list) ret = NULL;
68 return ret;
71 /* get the first element */
72 inline static struct list *list_head( struct list *list )
74 return list_next( list, list );
77 /* get the last element */
78 inline static struct list *list_tail( struct list *list )
80 return list_prev( list, list );
83 /* check if a list is empty */
84 inline static int list_empty( struct list *list )
86 return list->next == list;
89 /* initialize a list */
90 inline static void list_init( struct list *list )
92 list->next = list->prev = list;
95 /* iterate through the list */
96 #define LIST_FOR_EACH(cursor,list) \
97 for ((cursor) = (list)->next; (cursor) != (list); (cursor) = (cursor)->next)
99 /* macros for statically initialized lists */
100 #define LIST_INIT(list) { &(list), &(list) }
102 /* get pointer to object containing list element */
103 #define LIST_ENTRY(elem, type, field) \
104 ((type *)((char *)(elem) - (unsigned int)(&((type *)0)->field)))
106 #endif /* __WINE_SERVER_LIST_H */