diff options
author | hobbs <hobbs> | 2005-10-04 21:46:31 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-10-04 21:46:31 (GMT) |
commit | 9048177dc3bfd854b4e7b25d861b93f8ebd8e8d7 (patch) | |
tree | 01df5d3af086ef3bb97e660ebb69c2b86bbaa094 /macosx | |
parent | 200c1c0ec5df6e89391273c96c252dc5b8fef09a (diff) | |
download | tk-9048177dc3bfd854b4e7b25d861b93f8ebd8e8d7.zip tk-9048177dc3bfd854b4e7b25d861b93f8ebd8e8d7.tar.gz tk-9048177dc3bfd854b4e7b25d861b93f8ebd8e8d7.tar.bz2 |
* macosx/tkMacOSXInt.h: add MODULE_SCOPE definition check for
extension writers that access private headers on OS X and don't
define it in configure.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXInt.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/macosx/tkMacOSXInt.h b/macosx/tkMacOSXInt.h index 38b9b29..81e8e72 100644 --- a/macosx/tkMacOSXInt.h +++ b/macosx/tkMacOSXInt.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXInt.h,v 1.8 2005/08/09 07:39:21 das Exp $ + * RCS: @(#) $Id: tkMacOSXInt.h,v 1.9 2005/10/04 21:46:31 hobbs Exp $ */ #ifndef _TKMACINT @@ -33,6 +33,14 @@ #include <Carbon/Carbon.h> +/* + * Should be defined by configure, but some extensions may access + * this file without setting it. + */ +#ifndef MODULE_SCOPE +#define MODULE_SCOPE __private_extern__ +#endif + struct TkWindowPrivate { TkWindow *winPtr; /* Ptr to tk window or NULL if Pixmap */ CGrafPtr grafPtr; |