Write the path tables on the ISO structure.

This commit is contained in:
Vreixo Formoso
2007-12-21 22:53:48 +01:00
parent 31ee89c47b
commit 2fd3195747
2 changed files with 111 additions and 4 deletions

View File

@ -138,4 +138,15 @@ struct ecma119_dir_record
/* system use (len_dr - len_su + 1 to len_dr) */
};
/* ECMA-119, 9.4 */
struct ecma119_path_table_record
{
uint8_t len_di BP(1, 1);
uint8_t len_xa BP(2, 2);
uint8_t block BP(3, 6);
uint8_t parent BP(7, 8);
uint8_t dir_id BP(9, 9); /* 9 to 8+len_di */
/* padding field (if len_di is odd) */
};
#endif /*LIBISO_ECMA119_H_*/