diff options
Diffstat (limited to 'maccaml/clipboard.c')
-rw-r--r-- | maccaml/clipboard.c | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/maccaml/clipboard.c b/maccaml/clipboard.c deleted file mode 100644 index 0e09065fb..000000000 --- a/maccaml/clipboard.c +++ /dev/null @@ -1,40 +0,0 @@ -/***********************************************************************/ -/* */ -/* Objective Caml */ -/* */ -/* Damien Doligez, projet Para, INRIA Rocquencourt */ -/* */ -/* Copyright 1998 Institut National de Recherche en Informatique et */ -/* en Automatique. All rights reserved. This file is distributed */ -/* under the terms of the GNU Library General Public License, with */ -/* the special exception on linking described in file ../LICENSE. */ -/* */ -/***********************************************************************/ - -/* $Id$ */ - -#include "main.h" - -WindowPtr clip_window = NULL; - -/* Open clipboard window or bring it to the front. */ -void ClipShow (void) -{ - if (clip_window != NULL){ - SelectWindow (clip_window); - }else{ - XXX (); - } -} - -void ClipClose (void) -{ - XXX (); -} - -void ClipChanged (void) -{ - if (clip_window != NULL){ - XXX (); - } -} |