summaryrefslogtreecommitdiffstats
path: root/generic/tk.decls
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-06-03 08:58:14 (GMT)
committerhobbs <hobbs>2000-06-03 08:58:14 (GMT)
commitabd4bf4681dc1af59b52aab2440fcda3ee06a6b3 (patch)
treed2aac881f8b1a76c3caac0cfa24863e99dc2569a /generic/tk.decls
parent26ff03f7b00c9c3188873b63186b0ebeffc0e2f4 (diff)
downloadtk-abd4bf4681dc1af59b52aab2440fcda3ee06a6b3.zip
tk-abd4bf4681dc1af59b52aab2440fcda3ee06a6b3.tar.gz
tk-abd4bf4681dc1af59b52aab2440fcda3ee06a6b3.tar.bz2
* generic/tk.h: added typdef for Tk_ClientMessageProc
* generic/tkStubInit.c: * generic/tkDecls.h: * generic/tk.decls: Added Tk_CreateClientMessageHandler and Tk_DeleteClientMessageHandler declarations. * generic/tkEvent.c (Tk_HandleEvent): Added Tk_CreateClientMessageHandler and Tk_DeleteClientMessageHandler to allow adding event handlers that invoke for ClientMessage events. This is necessary to support unix dnd protocols.
Diffstat (limited to 'generic/tk.decls')
-rw-r--r--generic/tk.decls14
1 files changed, 12 insertions, 2 deletions
diff --git a/generic/tk.decls b/generic/tk.decls
index d5af12a..2843334 100644
--- a/generic/tk.decls
+++ b/generic/tk.decls
@@ -6,11 +6,12 @@
# tkStub.c, and tkPlatStub.c files.
#
#
-# Copyright (c) 1998-1999 by Scriptics Corporation.
+# Copyright (c) 1998-2000 Ajuba Solutions.
+#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: tk.decls,v 1.10 2000/04/25 01:03:05 hobbs Exp $
+# RCS: @(#) $Id: tk.decls,v 1.11 2000/06/03 08:58:14 hobbs Exp $
library tk
@@ -1126,6 +1127,15 @@ declare 238 generic {
int width, int height)
}
+# New in 8.4a1
+#
+declare 239 generic {
+ void Tk_CreateClientMessageHandler (Tk_ClientMessageProc *proc)
+}
+declare 240 generic {
+ void Tk_DeleteClientMessageHandler (Tk_ClientMessageProc *proc)
+}
+
# Define the platform specific public Tk interface. These functions are
# only available on the designated platform.