xrdp/common/list.h

54 lines
1.4 KiB
C
Raw Normal View History

2005-06-28 07:04:36 +04:00
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
xrdp: A Remote Desktop Protocol server.
2006-03-21 05:05:38 +03:00
Copyright (C) Jay Sorg 2004-2006
2005-06-28 07:04:36 +04:00
*/
#if !defined(LIST_H)
#define LIST_H
/* list */
struct list
{
long* items;
int count;
int alloc_size;
int grow_by;
int auto_free;
};
struct list* APP_CC
2005-06-30 05:01:19 +04:00
list_create(void);
void APP_CC
2005-06-30 05:01:19 +04:00
list_delete(struct list* self);
void APP_CC
2005-06-30 05:01:19 +04:00
list_add_item(struct list* self, long item);
long APP_CC
2005-06-30 05:01:19 +04:00
list_get_item(struct list* self, int index);
void APP_CC
2005-06-30 05:01:19 +04:00
list_clear(struct list* self);
int APP_CC
2005-06-30 05:01:19 +04:00
list_index_of(struct list* self, long item);
void APP_CC
2005-06-30 05:01:19 +04:00
list_remove_item(struct list* self, int index);
void APP_CC
2005-06-30 05:01:19 +04:00
list_insert_item(struct list* self, int index, long item);
2006-09-18 08:35:10 +04:00
void APP_CC
list_append_list_strdup(struct list* self, struct list* dest, int start_index);
2005-06-28 07:04:36 +04:00
#endif