27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
* not be changed.
*/
#define XVFS_RV_ERR_ENOENT (-8192)
#define XVFS_RV_ERR_EINVAL (-8193)
#define XVFS_RV_ERR_EISDIR (-8194)
#define XVFS_RV_ERR_ENOTDIR (-8195)
#define XVFS_RV_ERR_EFAULT (-8196)
#define XVFS_REGISTER_INTERFACE(name) int name(Tcl_Interp *interp, struct Xvfs_FSInfo *fsInfo);
#if defined(XVFS_MODE_STANDALONE)
/*
* In standalone mode, we just redefine calls to
* Xvfs_Register() to go to the xvfs_standalone_register()
|
>
|
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
* not be changed.
*/
#define XVFS_RV_ERR_ENOENT (-8192)
#define XVFS_RV_ERR_EINVAL (-8193)
#define XVFS_RV_ERR_EISDIR (-8194)
#define XVFS_RV_ERR_ENOTDIR (-8195)
#define XVFS_RV_ERR_EFAULT (-8196)
#define XVFS_RV_ERR_INTERNAL (-16383)
#define XVFS_REGISTER_INTERFACE(name) int name(Tcl_Interp *interp, struct Xvfs_FSInfo *fsInfo);
#if defined(XVFS_MODE_STANDALONE)
/*
* In standalone mode, we just redefine calls to
* Xvfs_Register() to go to the xvfs_standalone_register()
|