Rev 2 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
/*
*
*
*
*
*/
#ifndef __MSDOS_I_H__
#define __MSDOS_I_H__
#include <fs/types.h>
struct msdos_inode_info {
/* where this inode reside on disk */
__uint32_t lsector; /* logical sector */
int offs; /* offset, in sizeof(struct directoryentry) */
/* where the data of this inode begin*/
__uint16_t scluster; /* start cluster */
};
#define MSDOS_I(ptr) (ptr->u.msdos_i)
#endif