diff options
author | jsorg71 <jsorg71> | 2009-04-19 17:16:46 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2009-04-19 17:16:46 +0000 |
commit | 631a7c16e1f5eec4b4550d3dfbfc85817e593f76 (patch) | |
tree | 8bdcc8fce062eb06caa858224fec19d06d3e84de /sesman/chansrv/clipboard.c | |
parent | 108cc8f03021f4b94a291c166e8a890c16893528 (diff) | |
download | xrdp-proprietary-631a7c16e1f5eec4b4550d3dfbfc85817e593f76.tar.gz xrdp-proprietary-631a7c16e1f5eec4b4550d3dfbfc85817e593f76.zip |
added chansrv
Diffstat (limited to 'sesman/chansrv/clipboard.c')
-rw-r--r-- | sesman/chansrv/clipboard.c | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sesman/chansrv/clipboard.c b/sesman/chansrv/clipboard.c new file mode 100644 index 00000000..69096eab --- /dev/null +++ b/sesman/chansrv/clipboard.c @@ -0,0 +1,51 @@ +/* + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + xrdp: A Remote Desktop Protocol server. + Copyright (C) Jay Sorg 2009 +*/ + +#include "arch.h" +#include "parse.h" +#include "os_calls.h" + +/*****************************************************************************/ +int APP_CC +clipboard_init(void) +{ + return 0; +} + +/*****************************************************************************/ +int APP_CC +clipboard_data_in(struct stream* s, int chan_id, int chan_flags, int length, + int total_length) +{ + return 0; +} + +/*****************************************************************************/ +int APP_CC +clipboard_get_wait_objs(tbus* objs, int* count, int* timeout) +{ + return 0; +} + +/*****************************************************************************/ +int APP_CC +clipboard_check_wait_objs(void) +{ + return 0; +} |