2 * wclipbrd.c -- Clipboard routines for WinBoard
\r
4 * Copyright 2000, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Free
\r
5 * Software Foundation, Inc.
\r
7 * Enhancements Copyright 2005 Alessandro Scotti
\r
9 * ------------------------------------------------------------------------
\r
11 * GNU XBoard is free software: you can redistribute it and/or modify
\r
12 * it under the terms of the GNU General Public License as published by
\r
13 * the Free Software Foundation, either version 3 of the License, or (at
\r
14 * your option) any later version.
\r
16 * GNU XBoard is distributed in the hope that it will be useful, but
\r
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
\r
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
\r
19 * General Public License for more details.
\r
21 * You should have received a copy of the GNU General Public License
\r
22 * along with this program. If not, see http://www.gnu.org/licenses/. *
\r
24 *------------------------------------------------------------------------
\r
25 ** See the file ChangeLog for a revision history. */
\r
27 VOID CopyFENToClipboard();
\r
28 VOID CopyGameToClipboard();
\r
29 VOID CopyGameListToClipboard();
\r
30 int CopyTextToClipboard(char *text);
\r
32 VOID PasteFENFromClipboard();
\r
33 VOID PasteGameFromClipboard();
\r
34 int PasteTextFromClipboard(char **text);
\r
36 VOID DeleteClipboardTempFiles();
\r
38 VOID PasteGameOrFENFromClipboard(); /* [AS] */
\r