summaryrefslogtreecommitdiffstats
path: root/generic/tclStubInit.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-09-12 19:30:00 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-09-12 19:30:00 (GMT)
commit9b45aaa5b04468a95445c052fb62b42f081960b3 (patch)
tree48463f1ee46b845f9328773b5ee8984c5592617a /generic/tclStubInit.c
parent945b10776dd8549b1f2371b406bea48df0e987d8 (diff)
parent9b285dde85a6b7f41dd63cadb8c32517e3b1d1dd (diff)
downloadtcl-9b45aaa5b04468a95445c052fb62b42f081960b3.zip
tcl-9b45aaa5b04468a95445c052fb62b42f081960b3.tar.gz
tcl-9b45aaa5b04468a95445c052fb62b42f081960b3.tar.bz2
TIP #430 implementation
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r--generic/tclStubInit.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c
index c4706df..93ec08a 100644
--- a/generic/tclStubInit.c
+++ b/generic/tclStubInit.c
@@ -837,12 +837,16 @@ static const TclIntPlatStubs tclIntPlatStubs = {
static const TclPlatStubs tclPlatStubs = {
TCL_STUB_MAGIC,
0,
+#if !defined(_WIN32) && !defined(__CYGWIN__) && !defined(MAC_OSX_TCL) /* UNIX */
+ TclZipfs_AppHook, /* 0 */
+#endif /* UNIX */
#if defined(_WIN32) || defined(__CYGWIN__) /* WIN */
Tcl_WinUtfToTChar, /* 0 */
Tcl_WinTCharToUtf, /* 1 */
+ TclZipfs_AppHook, /* 2 */
#endif /* WIN */
#ifdef MAC_OSX_TCL /* MACOSX */
- Tcl_MacOSXOpenBundleResources, /* 0 */
+ TclZipfs_AppHook, /* 0 */
Tcl_MacOSXOpenVersionedBundleResources, /* 1 */
#endif /* MACOSX */
};
@@ -1590,6 +1594,10 @@ const TclStubs tclStubs = {
Tcl_FSUnloadFile, /* 629 */
Tcl_ZlibStreamSetCompressionDictionary, /* 630 */
Tcl_OpenTcpServerEx, /* 631 */
+ TclZipfs_Mount, /* 632 */
+ TclZipfs_Unmount, /* 633 */
+ TclZipfs_TclLibrary, /* 634 */
+ TclZipfs_Mount_Buffer, /* 635 */
};
/* !END!: Do not edit above this line. */