]>
Commit | Line | Data |
---|---|---|
de8ee011 A |
1 | /* Copyright © 2017-2018 Apple Inc. All rights reserved. |
2 | * | |
3 | * lf_hfs_volume_allocation.h | |
4 | * livefiles_hfs | |
5 | * | |
6 | * Created by Or Haimovich on 22/3/18. | |
7 | */ | |
8 | ||
9 | #ifndef lf_hfs_volume_allocation_h | |
10 | #define lf_hfs_volume_allocation_h | |
11 | ||
12 | #include "lf_hfs.h" | |
13 | ||
14 | int hfs_init_summary (struct hfsmount *hfsmp); | |
15 | u_int32_t ScanUnmapBlocks (struct hfsmount *hfsmp); | |
16 | int hfs_isallocated(struct hfsmount *hfsmp, u_int32_t startingBlock, u_int32_t numBlocks); | |
17 | ||
18 | #endif /* lf_hfs_volume_allocation_h */ |