mirror of https://github.com/opa334/TrollStore.git
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
|