12
13
14
15
16
17
18
19
20
21
22
|
struct Xvfs_FSInfo {
int protocolVersion;
const char *name;
xvfs_proc_getChildren_t getChildrenProc;
xvfs_proc_getData_t getDataProc;
xvfs_proc_getInfo_t getInfoProc;
};
int Xvfs_Register(Tcl_Interp *interp, struct Xvfs_FSInfo *fsInfo);
#endif
|
>
>
>
>
|
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
|