summaryrefslogtreecommitdiffstats
path: root/common/fifo.h
diff options
context:
space:
mode:
authorLaxmikant Rashinkar <LK.Rashinkar@gmail.com>2014-07-26 13:33:44 -0700
committerLaxmikant Rashinkar <LK.Rashinkar@gmail.com>2014-07-26 13:33:44 -0700
commit56e43c4a3899f9efd4c02f8a2abc0407691b20b5 (patch)
tree02f28e8bb0b93e4a1916bb39eba27893aedde777 /common/fifo.h
parent27055d5762d23ae3996e7e41ef45ef6454fa2d65 (diff)
parent0f9bd232d91a431f68853a308b768e782ab37ff1 (diff)
downloadxrdp-proprietary-56e43c4a3899f9efd4c02f8a2abc0407691b20b5.tar.gz
xrdp-proprietary-56e43c4a3899f9efd4c02f8a2abc0407691b20b5.zip
Merge branch 'devel' of github.com:NeutrinoLabs/xrdp into devel
Diffstat (limited to 'common/fifo.h')
-rw-r--r--common/fifo.h12
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