TclVFS

Check-in [2fec87c76b]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Added the correct EXPORT and DLLEXPORT directives to make the package loadable once more
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | etoyoc
Files: files | file ages | folders
SHA1: 2fec87c76bba6794385a6934553e86c4bbcaeed3
User & Date: seandeelywoods 2014-04-16 02:42:30.000
Context
2014-04-16
03:13
Upgraded to the latest TEA macros check-in: 6c76e68ba0 user: seandeelywoods tags: etoyoc
02:42
Added the correct EXPORT and DLLEXPORT directives to make the package loadable once more check-in: 2fec87c76b user: seandeelywoods tags: etoyoc
2013-02-05
13:18
2013-02-05 Wojciech Kocjan <[email protected]> * library/zipvfs.tcl: vfs::zip unable to read zip archives with wrong modes, bug 3603414 check-in: 811432f961 user: zoro2 tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to generic/vfs.c.
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
 *
 * Side effects:
 *	Adds a command to the Tcl interpreter.
 *
 *----------------------------------------------------------------------
 */

int
Vfs_Init(interp)
    Tcl_Interp *interp;		/* Interpreter for application. */
{
    if (Tcl_InitStubs(interp, "8.4", 0) == NULL) {
	return TCL_ERROR;
    }
    if (Tcl_PkgRequire(interp, "Tcl", "8.4", 0) == NULL) {







|







322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
 *
 * Side effects:
 *	Adds a command to the Tcl interpreter.
 *
 *----------------------------------------------------------------------
 */

EXTERN int DLLEXPORT
Vfs_Init(interp)
    Tcl_Interp *interp;		/* Interpreter for application. */
{
    if (Tcl_InitStubs(interp, "8.4", 0) == NULL) {
	return TCL_ERROR;
    }
    if (Tcl_PkgRequire(interp, "Tcl", "8.4", 0) == NULL) {