diff options
author | redman <redman> | 1999-06-26 19:35:58 (GMT) |
---|---|---|
committer | redman <redman> | 1999-06-26 19:35:58 (GMT) |
commit | 13e2875c78600a24136dabeee868927b69502252 (patch) | |
tree | 69b94fbbc65e8c5a90c7c4fb12cd98c16c296825 | |
parent | e3bbd904bc3e8b1e2ec09299d88fea3d42b9ce53 (diff) | |
download | tcl-13e2875c78600a24136dabeee868927b69502252.zip tcl-13e2875c78600a24136dabeee868927b69502252.tar.gz tcl-13e2875c78600a24136dabeee868927b69502252.tar.bz2 |
Export functions for TclHandle
-rw-r--r-- | generic/tclInt.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index cfa587b..2d76792 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.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: tclInt.h,v 1.33 1999/06/15 01:16:23 hershey Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.34 1999/06/26 19:35:58 redman Exp $ */ #ifndef _TCLINT @@ -701,10 +701,10 @@ typedef struct CallFrame { typedef VOID **TclHandle; -TclHandle TclHandleCreate _ANSI_ARGS_((VOID *ptr)); -void TclHandleFree _ANSI_ARGS_((TclHandle handle)); -TclHandle TclHandlePreserve _ANSI_ARGS_((TclHandle handle)); -void TclHandleRelease _ANSI_ARGS_((TclHandle handle)); +EXTERN TclHandle TclHandleCreate _ANSI_ARGS_((VOID *ptr)); +EXTERN void TclHandleFree _ANSI_ARGS_((TclHandle handle)); +EXTERN TclHandle TclHandlePreserve _ANSI_ARGS_((TclHandle handle)); +EXTERN void TclHandleRelease _ANSI_ARGS_((TclHandle handle)); /* *---------------------------------------------------------------- |