summaryrefslogtreecommitdiffstats
path: root/common/list16.h
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.h
parent8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff)
downloadxrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz
xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'common/list16.h')
-rw-r--r--common/list16.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/common/list16.h b/common/list16.h
index 1a328ea7..fbe36e1d 100644
--- a/common/list16.h
+++ b/common/list16.h
@@ -32,25 +32,25 @@ struct list16
tui16 mitems[4];
};
-struct list16* APP_CC
+struct list16*
list16_create(void);
-void APP_CC
+void
list16_delete(struct list16* self);
-void APP_CC
+void
list16_init(struct list16* self);
-void APP_CC
+void
list16_deinit(struct list16* self);
-void APP_CC
+void
list16_add_item(struct list16* self, tui16 item);
-tui16 APP_CC
+tui16
list16_get_item(struct list16* self, int index);
-void APP_CC
+void
list16_clear(struct list16* self);
-int APP_CC
+int
list16_index_of(struct list16* self, tui16 item);
-void APP_CC
+void
list16_remove_item(struct list16* self, int index);
-void APP_CC
+void
list16_insert_item(struct list16* self, int index, tui16 item);
#endif