summaryrefslogtreecommitdiffstats
path: root/generic/tcl.decls
diff options
context:
space:
mode:
authorkennykb <kennykb@noemail.net>2010-04-02 21:21:03 (GMT)
committerkennykb <kennykb@noemail.net>2010-04-02 21:21:03 (GMT)
commit1d3c15759592c3b5b4bbc852f9c689b957065b7e (patch)
treefe391271cb3355eb790c38ed7e17ab484df92009 /generic/tcl.decls
parentd9d94dfaa0cddbe3b4d71eebc5ec645f397c26b9 (diff)
downloadtcl-1d3c15759592c3b5b4bbc852f9c689b957065b7e.zip
tcl-1d3c15759592c3b5b4bbc852f9c689b957065b7e.tar.gz
tcl-1d3c15759592c3b5b4bbc852f9c689b957065b7e.tar.bz2
* generic/tcl.decls: [TIP #357]: First round of changes
* generic/tclDecls.h: to export Tcl_LoadFile, Tcl_FindSymbol, * generic/tclIOUtil.c: and Tcl_FSUnloadFile to the public API. * generic/tclInt.h: * generic/tclLoad.c: * generic/tclLoadNone.c: * generic/tclStubInit.c: * tests/fileSystem.test: * tests/load.test: * tests/unload.test: * unix/tclLoadDl.c: * unix/tclLoadDyld.c: * unix/tclLoadNext.c: * unix/tclLoadOSF.c: * unix/tclLoadShl.c: * unix/tclUnixPipe.c: * win/Makefile.in: * win/tclWinLoad.c: FossilOrigin-Name: 80aa157f455c7e777a532f7a3fd791d38359f31d
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r--generic/tcl.decls16
1 files changed, 15 insertions, 1 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls
index e9843a8..0e59216 100644
--- a/generic/tcl.decls
+++ b/generic/tcl.decls
@@ -12,7 +12,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: tcl.decls,v 1.172 2010/01/29 16:17:20 nijtmans Exp $
+# RCS: @(#) $Id: tcl.decls,v 1.173 2010/04/02 21:21:04 kennykb Exp $
library tcl
@@ -2305,6 +2305,20 @@ declare 626 generic {
int Tcl_NRSubstObj(Tcl_Interp *interp, Tcl_Obj *objPtr, int flags)
}
+# TIP #357 (Export TclLoadFile and TclpFindSymbol) kbk
+declare 627 generic {
+ int Tcl_LoadFile(Tcl_Interp *interp, Tcl_Obj *pathPtr,
+ const char *symv[], int flags, void* procPtrs,
+ Tcl_LoadHandle* handlePtr)
+}
+declare 628 generic {
+ void* Tcl_FindSymbol(Tcl_Interp* interp, Tcl_LoadHandle handle,
+ const char* symbol)
+}
+declare 629 generic {
+ int Tcl_FSUnloadFile(Tcl_Interp* interp, Tcl_LoadHandle handlePtr)
+}
+
# ----- BASELINE -- FOR -- 8.6.0 ----- #
##############################################################################