diff options
| author | Pavel Roskin <plroskin@gmail.com> | 2017-03-12 09:35:00 -0700 |
|---|---|---|
| committer | jsorg71 <jay.sorg@gmail.com> | 2017-03-14 00:21:48 -0700 |
| commit | 6ed4c969f4d646a7751fe2da29ba94eddd3d6477 (patch) | |
| tree | 951c72b16a0be1a1cc8c77e6d2ecaa1f25f2bcd6 /common/list.h | |
| parent | 8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff) | |
| download | xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip | |
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'common/list.h')
| -rw-r--r-- | common/list.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/common/list.h b/common/list.h index 146aab11..b3c9ef13 100644 --- a/common/list.h +++ b/common/list.h @@ -33,25 +33,25 @@ struct list int auto_free; }; -struct list* APP_CC +struct list* list_create(void); -void APP_CC +void list_delete(struct list* self); -void APP_CC +void list_add_item(struct list* self, tintptr item); -tintptr APP_CC +tintptr list_get_item(const struct list *self, int index); -void APP_CC +void list_clear(struct list* self); -int APP_CC +int list_index_of(struct list* self, tintptr item); -void APP_CC +void list_remove_item(struct list* self, int index); -void APP_CC +void list_insert_item(struct list* self, int index, tintptr item); -void APP_CC +void list_append_list_strdup(struct list* self, struct list* dest, int start_index); -void APP_CC +void list_dump_items(struct list* self); #endif |
