summaryrefslogtreecommitdiffstats
path: root/common
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
parent792caad39a2b4fadce40d17012036059d32dbb97 (diff)
downloadxrdp-proprietary-ea7553f77c5b85e438d16c386c15511d2c40e1b3.tar.gz
xrdp-proprietary-ea7553f77c5b85e438d16c386c15511d2c40e1b3.zip
long to tbus
Diffstat (limited to 'common')
-rw-r--r--common/list.c28
-rw-r--r--common/list.h10
2 files changed, 19 insertions, 19 deletions
diff --git a/common/list.c b/common/list.c
index 0ba759f7..c94fac66 100644
--- a/common/list.c
+++ b/common/list.c
@@ -35,7 +35,7 @@ list_create(void)
self = (struct list*)g_malloc(sizeof(struct list), 1);
self->grow_by = 10;
self->alloc_size = 10;
- self->items = (long*)g_malloc(sizeof(long) * 10, 1);
+ self->items = (tbus*)g_malloc(sizeof(tbus) * 10, 1);
return self;
}
@@ -63,17 +63,17 @@ list_delete(struct list* self)
/*****************************************************************************/
void APP_CC
-list_add_item(struct list* self, long item)
+list_add_item(struct list* self, tbus item)
{
- long* p;
+ tbus* p;
int i;
if (self->count >= self->alloc_size)
{
i = self->alloc_size;
self->alloc_size += self->grow_by;
- p = (long*)g_malloc(sizeof(long) * self->alloc_size, 1);
- g_memcpy(p, self->items, sizeof(long) * i);
+ p = (tbus*)g_malloc(sizeof(tbus) * self->alloc_size, 1);
+ g_memcpy(p, self->items, sizeof(tbus) * i);
g_free(self->items);
self->items = p;
}
@@ -82,7 +82,7 @@ list_add_item(struct list* self, long item)
}
/*****************************************************************************/
-long APP_CC
+tbus APP_CC
list_get_item(struct list* self, int index)
{
if (index < 0 || index >= self->count)
@@ -110,12 +110,12 @@ list_clear(struct list* self)
self->count = 0;
self->grow_by = 10;
self->alloc_size = 10;
- self->items = (long*)g_malloc(sizeof(long) * 10, 1);
+ self->items = (tbus*)g_malloc(sizeof(tbus) * 10, 1);
}
/*****************************************************************************/
int APP_CC
-list_index_of(struct list* self, long item)
+list_index_of(struct list* self, tbus item)
{
int i;
@@ -152,9 +152,9 @@ 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)
{
- long* p;
+ tbus* p;
int i;
if (index == self->count)
@@ -169,8 +169,8 @@ list_insert_item(struct list* self, int index, long item)
{
i = self->alloc_size;
self->alloc_size += self->grow_by;
- p = (long*)g_malloc(sizeof(long) * self->alloc_size, 1);
- g_memcpy(p, self->items, sizeof(long) * i);
+ p = (tbus*)g_malloc(sizeof(tbus) * self->alloc_size, 1);
+ g_memcpy(p, self->items, sizeof(tbus) * i);
g_free(self->items);
self->items = p;
}
@@ -189,13 +189,13 @@ void APP_CC
list_append_list_strdup(struct list* self, struct list* dest, int start_index)
{
int index;
- long item;
+ tbus item;
char* dup;
for (index = start_index; index < self->count; index++)
{
item = list_get_item(self, index);
dup = g_strdup((char*)item);
- list_add_item(dest, (long)dup);
+ list_add_item(dest, (tbus)dup);
}
}
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);