diff options
author | jsorg71 <jsorg71> | 2007-11-03 06:03:46 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2007-11-03 06:03:46 +0000 |
commit | ea7553f77c5b85e438d16c386c15511d2c40e1b3 (patch) | |
tree | 4fb68dda409dfaf2be3b397bf64e29afd3da6eca /common/list.h | |
parent | 792caad39a2b4fadce40d17012036059d32dbb97 (diff) | |
download | xrdp-proprietary-ea7553f77c5b85e438d16c386c15511d2c40e1b3.tar.gz xrdp-proprietary-ea7553f77c5b85e438d16c386c15511d2c40e1b3.zip |
long to tbus
Diffstat (limited to 'common/list.h')
-rw-r--r-- | common/list.h | 10 |
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); |