#define FS_STATUS 0x1101
#define FS_DIR_CREATE 0x1111
#define FS_DIR_REMOVE 0x1112
#define FS_DIR_OPEN 0x1113
#define FS_DIR_CLOSE 0x1114
#define FS_DIR_READ 0x1115
#define FS_FILE_STATUS 0x1121
#define FS_FILE_DELETE 0x1122
#define FS_FILE_SEEK 0x1123
#define FS_VOL_MOUNT 0x1130
#define FS_VOL_UNMOUNT 0x1131
#define FS_RENAME 0x1132
#define NUTFS_UNLINK 0x1133
#define NUTFS_MKDIR 0x1134
#define NUTFS_RMDIR 0x1135
struct | |
{ | |
void* arg1; | |
void* arg2; | |
} |
struct | |
{ | |
void* arg1; | |
void* arg2; | |
void* arg3; | |
} |
struct _FSCP_VOL_MOUNT | |
{ | |
NUTFILE* fscp_bmnt; | |
u_char fscp_part_type; | |
} |
struct _FSCP_RENAME | |
{ | |
const char* par_old; | |
const char* par_new; | |
} |
struct _FSCP_STATUS | |
{ | |
const char* par_path; | |
struct stat* par_stp; | |
} |