diff options
author | das <das> | 2001-11-23 02:04:08 (GMT) |
---|---|---|
committer | das <das> | 2001-11-23 02:04:08 (GMT) |
commit | aa409cc42da819e8ab1d081e7a1f175b33c1c2cf (patch) | |
tree | 0d0864ac4fc0b0ff178f5869f1600d2c584109c8 /mac/tkMacPort.h | |
parent | 5efa25f6e1ad2a687cac8c1caab6d8c10f978269 (diff) | |
download | tk-aa409cc42da819e8ab1d081e7a1f175b33c1c2cf.zip tk-aa409cc42da819e8ab1d081e7a1f175b33c1c2cf.tar.gz tk-aa409cc42da819e8ab1d081e7a1f175b33c1c2cf.tar.bz2 |
** upport to 8.4 of mac code changes for 8.3.3 & various new
** changes for 8.4, some already backported to 8.3.4 (patch #435660)
see ChangeLog for details
Diffstat (limited to 'mac/tkMacPort.h')
-rw-r--r-- | mac/tkMacPort.h | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/mac/tkMacPort.h b/mac/tkMacPort.h index 027fa06..91b1b35 100644 --- a/mac/tkMacPort.h +++ b/mac/tkMacPort.h @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacPort.h,v 1.10 2001/09/21 21:22:09 hobbs Exp $ + * RCS: @(#) $Id: tkMacPort.h,v 1.11 2001/11/23 02:06:14 das Exp $ */ #ifndef _TKMACPORT @@ -71,14 +71,14 @@ extern int errno; */ #ifndef panic /* In a stubs-aware setting, this could confuse the #define */ -extern void panic _ANSI_ARGS_(TCL_VARARGS(char *, string)); +EXTERN void panic _ANSI_ARGS_(TCL_VARARGS(char *, string)); #endif #ifndef strcasecmp -extern int strcasecmp _ANSI_ARGS_((CONST char *s1, +EXTERN int strcasecmp _ANSI_ARGS_((CONST char *s1, CONST char *s2)); #endif #ifndef strncasecmp -extern int strncasecmp _ANSI_ARGS_((CONST char *s1, +EXTERN int strncasecmp _ANSI_ARGS_((CONST char *s1, CONST char *s2, size_t n)); #endif /* @@ -150,4 +150,13 @@ extern int strncasecmp _ANSI_ARGS_((CONST char *s1, #define MENU_TEXT_PIXEL 51 #define APPEARANCE_PIXEL 52 +/* + * The following declaration is used to get access to a private Tcl interface + * that is needed for portability reasons. + */ + +#ifndef _TCLINT +#include <tclInt.h> +#endif + #endif /* _TKMACPORT */ |