summaryrefslogtreecommitdiffstats
path: root/sesman
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2013-03-11 12:43:57 -0700
committerJay Sorg <jay.sorg@gmail.com>2013-03-11 12:43:57 -0700
commit05de2e592a857db447b83684e96e1b0c7dbcf70f (patch)
tree81a8b0d472c4a28de66e8e6a9963a25041634f19 /sesman
parent75f63e78947f48f106d6cbdb913c898edce8840f (diff)
downloadxrdp-proprietary-05de2e592a857db447b83684e96e1b0c7dbcf70f.tar.gz
xrdp-proprietary-05de2e592a857db447b83684e96e1b0c7dbcf70f.zip
chansrv: fix for building without fuse
Diffstat (limited to 'sesman')
-rw-r--r--sesman/chansrv/chansrv_fuse.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/sesman/chansrv/chansrv_fuse.c b/sesman/chansrv/chansrv_fuse.c
index c55fd57f..d7c54cec 100644
--- a/sesman/chansrv/chansrv_fuse.c
+++ b/sesman/chansrv/chansrv_fuse.c
@@ -53,7 +53,12 @@ char g_fuse_root_path[256] = "";
** **
******************************************************************************/
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
#include "arch.h"
+#include "chansrv_fuse.h"
/* dummy calls when XRDP_FUSE is not defined */
int xfuse_init() {}
@@ -64,6 +69,12 @@ int xfuse_clear_clip_dir(void) {}
int xfuse_file_contents_range(int stream_id, char *data, int data_bytes) {}
int xfuse_file_contents_size(int stream_id, int file_size) {}
int xfuse_add_clip_dir_item(char *filename, int flags, int size, int lindex) {}
+int xfuse_create_share(tui32 device_id, char *dirname) {}
+void xfuse_devredir_cb_open_file(void *vp, tui32 DeviceId, tui32 FileId) {}
+void xfuse_devredir_cb_write_file(void *vp, char *buf, size_t length) {}
+void xfuse_devredir_cb_read_file(void *vp, char *buf, size_t length) {}
+void xfuse_devredir_cb_enum_dir(void *vp, struct xrdp_inode *xinode) {}
+void xfuse_devredir_cb_enum_dir_done(void *vp, tui32 IoStatus) {}
#else