16 lines
270 B
C
16 lines
270 B
C
#ifndef SHARE_SYSDEFS_VFS_H_
|
|
#define SHARE_SYSDEFS_VFS_H_
|
|
|
|
typedef struct {
|
|
char label[128];
|
|
int32_t fstype;
|
|
char devname[0x100];
|
|
} VfsMountStat;
|
|
|
|
typedef struct {
|
|
char labels[30][128];
|
|
uint8_t fieldavail[30];
|
|
} VfsAvailMounts;
|
|
|
|
#endif // SHARE_SYSDEFS_VFS_H_
|