Differences From Artifact [9145593486]:
- File xvfs-core.h — part of check-in [d121970301] at 2019-05-02 23:06:10 on branch trunk — Basic functionality to the point where Tcl_Channel types need to be implemented (user: rkeene, size: 752) [annotate] [blame] [check-ins using]
To Artifact [f7f064c7b1]:
- File xvfs-core.h — part of check-in [acfc5037c6] at 2019-05-02 23:11:24 on branch trunk — Added start of split into standalone/client/flexible modes (user: rkeene, size: 867) [annotate] [blame] [check-ins using]
︙ | |||
12 13 14 15 16 17 18 19 20 21 22 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | + + + + | struct Xvfs_FSInfo { int protocolVersion; const char *name; xvfs_proc_getChildren_t getChildrenProc; xvfs_proc_getData_t getDataProc; xvfs_proc_getInfo_t getInfoProc; }; #if XVFS_MODE == standalone #define Xvfs_Register(interp, fsInfo) xvfs_standalone_register(interp, fsInfo) #endif int Xvfs_Register(Tcl_Interp *interp, struct Xvfs_FSInfo *fsInfo); #endif |