mirror of
https://github.com/opa334/TrollStore.git
synced 2024-12-04 15:00:39 +08:00
10 lines
241 B
C
10 lines
241 B
C
#ifndef HOST_H
|
|
#define HOST_H
|
|
|
|
#include "FAT.h"
|
|
|
|
// Retrieve the preferred MachO slice from a FAT
|
|
// Preferred slice as in the slice that the kernel would use when loading the file
|
|
MachO *fat_find_preferred_slice(FAT *fat);
|
|
|
|
#endif // HOST_H
|