summaryrefslogtreecommitdiffstats
path: root/common/list16.c
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2017-03-12 09:35:00 -0700
committerjsorg71 <jay.sorg@gmail.com>2017-03-14 00:21:48 -0700
commit6ed4c969f4d646a7751fe2da29ba94eddd3d6477 (patch)
tree951c72b16a0be1a1cc8c77e6d2ecaa1f25f2bcd6 /common/list16.c
parent8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff)
downloadxrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz
xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'common/list16.c')
-rw-r--r--common/list16.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/common/list16.c b/common/list16.c
index 7ed4a169..8e548f71 100644
--- a/common/list16.c
+++ b/common/list16.c
@@ -27,7 +27,7 @@
#include "list16.h"
/*****************************************************************************/
-struct list16 *APP_CC
+struct list16 *
list16_create(void)
{
struct list16 *self;
@@ -38,7 +38,7 @@ list16_create(void)
}
/*****************************************************************************/
-void APP_CC
+void
list16_delete(struct list16 *self)
{
if (self == 0)
@@ -51,7 +51,7 @@ list16_delete(struct list16 *self)
}
/*****************************************************************************/
-void APP_CC
+void
list16_init(struct list16* self)
{
g_memset(self, 0, sizeof(struct list16));
@@ -60,7 +60,7 @@ list16_init(struct list16* self)
}
/*****************************************************************************/
-void APP_CC
+void
list16_deinit(struct list16* self)
{
if (self->items != self->mitems)
@@ -70,7 +70,7 @@ list16_deinit(struct list16* self)
}
/*****************************************************************************/
-void APP_CC
+void
list16_add_item(struct list16 *self, tui16 item)
{
tui16 *p;
@@ -94,7 +94,7 @@ list16_add_item(struct list16 *self, tui16 item)
}
/*****************************************************************************/
-tui16 APP_CC
+tui16
list16_get_item(struct list16 *self, int index)
{
if (index < 0 || index >= self->count)
@@ -106,7 +106,7 @@ list16_get_item(struct list16 *self, int index)
}
/*****************************************************************************/
-void APP_CC
+void
list16_clear(struct list16 *self)
{
if (self->items != self->mitems)
@@ -119,7 +119,7 @@ list16_clear(struct list16 *self)
}
/*****************************************************************************/
-int APP_CC
+int
list16_index_of(struct list16 *self, tui16 item)
{
int i;
@@ -136,7 +136,7 @@ list16_index_of(struct list16 *self, tui16 item)
}
/*****************************************************************************/
-void APP_CC
+void
list16_remove_item(struct list16 *self, int index)
{
int i;
@@ -153,7 +153,7 @@ list16_remove_item(struct list16 *self, int index)
}
/*****************************************************************************/
-void APP_CC
+void
list16_insert_item(struct list16 *self, int index, tui16 item)
{
tui16 *p;