Implemented missing methods, for full MFS read-only support.

This commit is contained in:
2016-08-01 17:59:22 +01:00
parent b60f650733
commit e37f50d5d3
10 changed files with 716 additions and 26 deletions

View File

@@ -41,7 +41,12 @@ namespace DiscImageChef.Filesystems.AppleMFS
const short DIRID_TRASH = -3;
const short DIRID_DESKTOP = -2;
const short DIRID_TEMPLATE = -1;
const short DIRID_ROOT = 0;
const int BMAP_FREE = 0;
const int BMAP_LAST = 1;
const int BMAP_DIR = 0xFFF;
}
}