diff options
author | hypnotoad <yoda@etoyoc.com> | 2017-09-25 16:23:56 (GMT) |
---|---|---|
committer | hypnotoad <yoda@etoyoc.com> | 2017-09-25 16:23:56 (GMT) |
commit | da869353bd4824d69fa3756a5336f08db6b7e997 (patch) | |
tree | fbf974444e657477f32f2d0b74772f8c13dd70ab /generic/tclZipfs.h | |
parent | cd7269ab4485bfd59094b17245b3ab9c943c6ff2 (diff) | |
download | tcl-core_zip_vfs.zip tcl-core_zip_vfs.tar.gz tcl-core_zip_vfs.tar.bz2 |
Improvements to Tip#430 based on community input. Added a forward declaration of TclZipfs_Init. Added TclZipfs_Mount() and TclZifs_Unmount to stubs table.core_zip_vfs
Diffstat (limited to 'generic/tclZipfs.h')
-rw-r--r-- | generic/tclZipfs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclZipfs.h b/generic/tclZipfs.h index 01c9e96..f7da3bd 100644 --- a/generic/tclZipfs.h +++ b/generic/tclZipfs.h @@ -27,11 +27,11 @@ extern "C" { # define ZIPFSAPI DLLEXPORT #endif -ZIPFSAPI int Tclzipfs_Mount(Tcl_Interp *interp, const char *zipname, +ZIPFSAPI int TclZipfs_Mount(Tcl_Interp *interp, const char *zipname, const char *mntpt, const char *passwd); -ZIPFSAPI int Tclzipfs_Unmount(Tcl_Interp *interp, const char *zipname); -ZIPFSAPI int Tclzipfs_Init(Tcl_Interp *interp); -ZIPFSAPI int Tclzipfs_SafeInit(Tcl_Interp *interp); +ZIPFSAPI int TclZipfs_Unmount(Tcl_Interp *interp, const char *zipname); +ZIPFSAPI int TclZipfs_Init(Tcl_Interp *interp); +ZIPFSAPI int TclZipfs_SafeInit(Tcl_Interp *interp); #ifdef __cplusplus } |