diff options
author | ericm <ericm@noemail.net> | 2000-09-02 01:18:22 (GMT) |
---|---|---|
committer | ericm <ericm@noemail.net> | 2000-09-02 01:18:22 (GMT) |
commit | e07e344476539ecc67332f1cb7d01518b2d69417 (patch) | |
tree | 9595245b7f08d899a74c495e6bdcf0aa4fff0a69 /generic | |
parent | b39757b5eac5954c6e166b581abce119f9040f97 (diff) | |
download | tk-e07e344476539ecc67332f1cb7d01518b2d69417.zip tk-e07e344476539ecc67332f1cb7d01518b2d69417.tar.gz tk-e07e344476539ecc67332f1cb7d01518b2d69417.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.
FossilOrigin-Name: 960c59512df2dfeb34b8851852007eb1efe83eeb
Diffstat (limited to 'generic')
-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: */ |