diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2014-07-25 21:37:59 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2014-07-25 21:37:59 -0700 |
commit | 9e1e6d3c3eebb5f82fa6fb6207255eb99ab89ecc (patch) | |
tree | 02835ae194f4c54d161f64dbdd1782c831390ccf /common/fifo.h | |
parent | ff8275da582a1235d591481e7f10cbcb6115c994 (diff) | |
download | xrdp-proprietary-9e1e6d3c3eebb5f82fa6fb6207255eb99ab89ecc.tar.gz xrdp-proprietary-9e1e6d3c3eebb5f82fa6fb6207255eb99ab89ecc.zip |
common: indent, not logic change
Diffstat (limited to 'common/fifo.h')
-rw-r--r-- | common/fifo.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/common/fifo.h b/common/fifo.h index 134227d8..813154a4 100644 --- a/common/fifo.h +++ b/common/fifo.h @@ -21,6 +21,8 @@ #ifndef _FIFO_H #define _FIFO_H +#include "arch.h" + typedef struct user_data USER_DATA; struct user_data @@ -36,10 +38,10 @@ typedef struct fifo int auto_free; } FIFO; -FIFO *fifo_create(); -void fifo_delete(FIFO *self); -int fifo_add_item(FIFO *self, void *item); -void *fifo_remove_item(FIFO *self); -int fifo_is_empty(); +FIFO * APP_CC fifo_create(void); +void APP_CC fifo_delete(FIFO *self); +int APP_CC fifo_add_item(FIFO *self, void *item); +void * APP_CC fifo_remove_item(FIFO *self); +int APP_CC fifo_is_empty(FIFO *self); #endif |