summaryrefslogtreecommitdiffstats
path: root/common/list.h
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2007-11-03 06:03:46 +0000
committerjsorg71 <jsorg71>2007-11-03 06:03:46 +0000
commitea7553f77c5b85e438d16c386c15511d2c40e1b3 (patch)
tree4fb68dda409dfaf2be3b397bf64e29afd3da6eca /common/list.h
parent792caad39a2b4fadce40d17012036059d32dbb97 (diff)
downloadxrdp-proprietary-ea7553f77c5b85e438d16c386c15511d2c40e1b3.tar.gz
xrdp-proprietary-ea7553f77c5b85e438d16c386c15511d2c40e1b3.zip
long to tbus
Diffstat (limited to 'common/list.h')
-rw-r--r--common/list.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/list.h b/common/list.h
index f839711b..af947469 100644
--- a/common/list.h
+++ b/common/list.h
@@ -30,7 +30,7 @@
/* list */
struct list
{
- long* items;
+ tbus* items;
int count;
int alloc_size;
int grow_by;
@@ -42,17 +42,17 @@ list_create(void);
void APP_CC
list_delete(struct list* self);
void APP_CC
-list_add_item(struct list* self, long item);
-long APP_CC
+list_add_item(struct list* self, tbus item);
+tbus APP_CC
list_get_item(struct list* self, int index);
void APP_CC
list_clear(struct list* self);
int APP_CC
-list_index_of(struct list* self, long item);
+list_index_of(struct list* self, tbus item);
void APP_CC
list_remove_item(struct list* self, int index);
void APP_CC
-list_insert_item(struct list* self, int index, long item);
+list_insert_item(struct list* self, int index, tbus item);
void APP_CC
list_append_list_strdup(struct list* self, struct list* dest, int start_index);