~ubuntu-branches/debian/lenny/italc/lenny

« back to all changes in this revision

Viewing changes to common/ivs/libvncserver/cutpaste.c

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Winnertz
  • Date: 2008-06-17 13:46:54 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20080617134654-2y5m7ki93r5c1ysf
Tags: upstream-1.0.9~rc3
ImportĀ upstreamĀ versionĀ 1.0.9~rc3

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
35
 
void rfbGotXCutText(rfbScreenInfoPtr rfbScreen, char *str, int len)
36
 
{
37
 
   rfbSendServerCutText(rfbScreen, str, len);
38
 
}