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/fifo.c | |
parent | 8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff) | |
download | xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip |
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'common/fifo.c')
-rw-r--r-- | common/fifo.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/fifo.c b/common/fifo.c index 61e30144..64e85f23 100644 --- a/common/fifo.c +++ b/common/fifo.c @@ -31,7 +31,7 @@ * @return pointer to new FIFO or NULL if system out of memory *****************************************************************************/ -FIFO * APP_CC +FIFO * fifo_create(void) { return (FIFO *) g_malloc(sizeof(FIFO), 1); @@ -41,7 +41,7 @@ fifo_create(void) * Delete specified FIFO *****************************************************************************/ -void APP_CC +void fifo_delete(FIFO *self) { USER_DATA *udp; @@ -91,7 +91,7 @@ fifo_delete(FIFO *self) * @return 0 on success, -1 on error *****************************************************************************/ -int APP_CC +int fifo_add_item(FIFO *self, void *item) { USER_DATA *udp; @@ -128,7 +128,7 @@ fifo_add_item(FIFO *self, void *item) * @return top item from FIFO or NULL if FIFO is empty *****************************************************************************/ -void * APP_CC +void * fifo_remove_item(FIFO *self) { void *item; @@ -163,7 +163,7 @@ fifo_remove_item(FIFO *self) * @return true if FIFO is empty, false otherwise *****************************************************************************/ -int APP_CC +int fifo_is_empty(FIFO *self) { if (!self) |