Differences From Artifact [a7ffc6f8bf]:
- File xvfs-common.c — part of check-in [47dcf5fc27] at 2019-05-01 20:53:31 on branch trunk — Added start of XVFS system (user: rkeene, size: 0) [annotate] [blame] [check-ins using]
- File xvfs-core.c — part of check-in [1ecab39ce5] at 2019-05-02 14:16:15 on branch trunk — Renamed core bits to "xvfs-core" (user: rkeene, size: 0) [annotate] [blame] [check-ins using]
To Artifact [b20c01ceb7]:
- File xvfs-core.c — part of check-in [69e476dcd5] at 2019-05-02 14:40:44 on branch trunk — Pass interp to the register command (user: rkeene, size: 262) [annotate] [blame] [check-ins using]
> > > > > > > | 1 2 3 4 5 6 7 |
#include <xvfs-core.h>
#include <tcl.h>
int Xvfs_Register(Tcl_Interp *interp, const char *fsName, int protocolVersion, xvfs_proc_getChildren_t getChildrenProc, xvfs_proc_getData_t getData) {
Tcl_SetResult(interp, "Not implemented", NULL);
return(TCL_ERROR);
}
|