2012-09-20 07:51:34 +04:00
|
|
|
/**
|
|
|
|
* xrdp: A Remote Desktop Protocol server.
|
|
|
|
*
|
2013-06-08 21:51:53 +04:00
|
|
|
* Copyright (C) Jay Sorg 2004-2013
|
2012-09-20 07:51:34 +04:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
* simple list
|
|
|
|
*/
|
2005-06-28 07:04:36 +04:00
|
|
|
|
|
|
|
#if !defined(LIST_H)
|
|
|
|
#define LIST_H
|
|
|
|
|
2006-10-12 08:46:40 +04:00
|
|
|
#include "arch.h"
|
|
|
|
|
2005-06-28 07:04:36 +04:00
|
|
|
/* list */
|
|
|
|
struct list
|
|
|
|
{
|
2007-11-03 09:03:46 +03:00
|
|
|
tbus* items;
|
2005-06-28 07:04:36 +04:00
|
|
|
int count;
|
|
|
|
int alloc_size;
|
|
|
|
int grow_by;
|
|
|
|
int auto_free;
|
|
|
|
};
|
|
|
|
|
2005-11-26 03:57:12 +03:00
|
|
|
struct list* APP_CC
|
2005-06-30 05:01:19 +04:00
|
|
|
list_create(void);
|
2005-11-26 03:57:12 +03:00
|
|
|
void APP_CC
|
2005-06-30 05:01:19 +04:00
|
|
|
list_delete(struct list* self);
|
2005-11-26 03:57:12 +03:00
|
|
|
void APP_CC
|
2007-11-03 09:03:46 +03:00
|
|
|
list_add_item(struct list* self, tbus item);
|
|
|
|
tbus APP_CC
|
2005-06-30 05:01:19 +04:00
|
|
|
list_get_item(struct list* self, int index);
|
2005-11-26 03:57:12 +03:00
|
|
|
void APP_CC
|
2005-06-30 05:01:19 +04:00
|
|
|
list_clear(struct list* self);
|
2005-11-26 03:57:12 +03:00
|
|
|
int APP_CC
|
2007-11-03 09:03:46 +03:00
|
|
|
list_index_of(struct list* self, tbus item);
|
2005-11-26 03:57:12 +03:00
|
|
|
void APP_CC
|
2005-06-30 05:01:19 +04:00
|
|
|
list_remove_item(struct list* self, int index);
|
2005-11-26 03:57:12 +03:00
|
|
|
void APP_CC
|
2007-11-03 09:03:46 +03:00
|
|
|
list_insert_item(struct list* self, int index, tbus 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);
|
2009-08-05 10:16:05 +04:00
|
|
|
void APP_CC
|
|
|
|
list_dump_items(struct list* self);
|
2005-06-28 07:04:36 +04:00
|
|
|
|
|
|
|
#endif
|