diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2005-01-11 10:46:37 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2005-01-11 10:46:37 (GMT) |
commit | a3e3ad8b42f2fec0b74692c19c4a3bc66f34686b (patch) | |
tree | 5c852c4af5d1b9344503dd2d99590fe03b4ae485 /generic/tkInt.h | |
parent | 7afbe2a52dba7c48acf040303c9dee79d01e2acb (diff) | |
download | tk-a3e3ad8b42f2fec0b74692c19c4a3bc66f34686b.zip tk-a3e3ad8b42f2fec0b74692c19c4a3bc66f34686b.tar.gz tk-a3e3ad8b42f2fec0b74692c19c4a3bc66f34686b.tar.bz2 |
Improved version of Michael Kirkham's fix for parsing pad values. [1098779]
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 9fdf1fa..177cd28 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: $Id: tkInt.h,v 1.56.2.3 2004/10/27 00:37:37 davygrvy Exp $ + * RCS: $Id: tkInt.h,v 1.56.2.4 2005/01/11 10:46:39 dkf Exp $ */ #ifndef _TKINT @@ -1171,6 +1171,11 @@ EXTERN void TkCreateExitHandler _ANSI_ARGS_((Tcl_ExitProc *proc, EXTERN void TkDeleteExitHandler _ANSI_ARGS_((Tcl_ExitProc *proc, ClientData clientData)); EXTERN Tcl_ExitProc TkFinalize; +EXTERN void TkPrintPadAmount _ANSI_ARGS_((Tcl_Interp *interp, + char *buffer, int pad1, int pad2)); +EXTERN int TkParsePadAmount _ANSI_ARGS_((Tcl_Interp *interp, + Tk_Window tkwin, Tcl_Obj *objPtr, + int *pad1Ptr, int *pad2Ptr)); /* * Unsupported commands. |