Included Files
- #include <nut/include/sys/device.h>
Preprocessor definitions
#define _FS_RAWFS_H_
typedef struct _RAWVOLUME RAWVOLUME
struct _RAWVOLUME
struct _RAWVOLUME
|
|
{
|
|
uint32_t vol_numfree;
|
|
HANDLE vol_fsmutex;
|
|
HANDLE vol_iomutex;
|
|
uint32_t vol_sect_cnt;
|
|
size_t vol_sect_len;
|
|
uint8_t* vol_sect_buf;
|
|
uint32_t vol_sect_num;
|
|
int vol_sect_dirty;
|
|
}
|
|
typedef struct _RAWFILE RAWFILE
struct _RAWFILE
|
|
{
|
|
uint32_t f_mode;
|
|
uint32_t f_pos;
|
|
uint32_t f_sect_num;
|
|
size_t f_sect_pos;
|
|
uint8_t* f_sect_buf;
|
|
}
|
|
External Variables
devRawFs0
extern NUTDEVICE devRawFs0