summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorredman <redman@noemail.net>1999-06-26 19:35:57 (GMT)
committerredman <redman@noemail.net>1999-06-26 19:35:57 (GMT)
commit73c1bbea1fcde78cc7ab853b061b00eaff0bf46f (patch)
tree69b94fbbc65e8c5a90c7c4fb12cd98c16c296825
parentde975e5b4947c83ecd5370c6f651ebcc3795d0e2 (diff)
downloadtcl-73c1bbea1fcde78cc7ab853b061b00eaff0bf46f.zip
tcl-73c1bbea1fcde78cc7ab853b061b00eaff0bf46f.tar.gz
tcl-73c1bbea1fcde78cc7ab853b061b00eaff0bf46f.tar.bz2
Export functions for TclHandle
FossilOrigin-Name: f084f054d6810ead34171fd14ea1aeeda7bc264e
-rw-r--r--generic/tclInt.h10
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));
/*
*----------------------------------------------------------------