File nut/include/fs/rawfs.h


Included Files


Preprocessor definitions

#define _FS_RAWFS_H_

Typedef RAWVOLUME

typedef struct _RAWVOLUME RAWVOLUME
See: Type struct _RAWVOLUME

Type struct _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 RAWFILE

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
Defined in: nut/fs/rawfs.c