diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkInt.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 39142a2..f547165 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. * - * SCCS: %Z% $Id: tkInt.h,v 1.4 1998/07/28 17:28:33 stanton Exp $ + * SCCS: %Z% $Id: tkInt.h,v 1.5 1998/07/29 13:14:12 escoffon Exp $ */ #ifndef _TKINT @@ -27,6 +27,11 @@ #include <tkPort.h> #endif +#ifdef BUILD_tk +# undef EXPORT +# define EXPORT DLLEXPORT +#endif + /* * Opaque type declarations: */ @@ -997,4 +1002,7 @@ EXTERN int TkXFileProc _ANSI_ARGS_((ClientData clientData, EXTERN int TkUnsupported1Cmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int argc, char **argv)); +#undef EXPORT +#define EXPORT DLLIMPORT + #endif /* _TKINT */ |