1 /*
2 * cutpaste.c - routines to deal with cut & paste buffers / selection.
3 */
4
5 /*
6 * OSXvnc Copyright (C) 2001 Dan McGuirk <mcguirk@incompleteness.net>.
7 * Original Xvnc code Copyright (C) 1999 AT&T Laboratories Cambridge.
8 * All Rights Reserved.
9 *
10 * This is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This software is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this software; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
23 * USA.
24 */
25
26 #include <rfb/rfb.h>
27
28
29 /*
30 * rfbSetXCutText sets the cut buffer to be the given string. We also clear
31 * the primary selection. Ideally we'd like to set it to the same thing, but I
32 * can't work out how to do that without some kind of helper X client.
33 */
34
rfbGotXCutText(rfbScreenInfoPtr rfbScreen,char * str,int len)35 void rfbGotXCutText(rfbScreenInfoPtr rfbScreen, char *str, int len)
36 {
37 rfbSendServerCutText(rfbScreen, str, len);
38 }
39