diff options
author | ericm <ericm> | 2000-09-02 01:18:23 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-09-02 01:18:23 (GMT) |
commit | 6b3c72d47a56a62cdc0a26e8ad8cc8db289b2869 (patch) | |
tree | 9595245b7f08d899a74c495e6bdcf0aa4fff0a69 /generic/tk.h | |
parent | aefa2a80a74a6233ca64090a607df9819a54d5e1 (diff) | |
download | tk-6b3c72d47a56a62cdc0a26e8ad8cc8db289b2869.zip tk-6b3c72d47a56a62cdc0a26e8ad8cc8db289b2869.tar.gz tk-6b3c72d47a56a62cdc0a26e8ad8cc8db289b2869.tar.bz2 |
* win/makefile.vc (install-libraries):
* win/Makefile.in (install-libraries):
* unix/Makefile.in (install-libraries): Added tkPlatDecls.h to
list of header files to install.
* generic/tk.h: Added #include "tkPlatDecls.h", which declares the
platform specific component of the public Tk stubs API's.
Diffstat (limited to 'generic/tk.h')
-rw-r--r-- | generic/tk.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/generic/tk.h b/generic/tk.h index 29105e0..88c6fab 100644 --- a/generic/tk.h +++ b/generic/tk.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tk.h,v 1.46 2000/08/03 21:14:30 ericm Exp $ + * RCS: @(#) $Id: tk.h,v 1.47 2000/09/02 01:18:23 ericm Exp $ */ #ifndef _TK @@ -1353,7 +1353,7 @@ typedef int (Tk_SelectionProc) _ANSI_ARGS_((ClientData clientData, /* *-------------------------------------------------------------- * - * Exported procedures and variables. + * Platform independant exported procedures and variables. * *-------------------------------------------------------------- */ @@ -1361,6 +1361,12 @@ typedef int (Tk_SelectionProc) _ANSI_ARGS_((ClientData clientData, #include "tkDecls.h" /* + * Platform dependant exported procedures and variables. + */ + +#include "tkPlatDecls.h" + +/* * Tcl commands exported by Tk: */ |