]> git.saurik.com Git - apple/xnu.git/blobdiff - EXTERNAL_HEADERS/mach-o/fat.h
xnu-792.6.61.tar.gz
[apple/xnu.git] / EXTERNAL_HEADERS / mach-o / fat.h
index 3558e4acfc3be966a60c159d0bd7317d20c75f99..e964a19651a9aa1197f2267a5910c258e2aa8f4f 100644 (file)
@@ -57,3 +57,18 @@ struct fat_arch {
        unsigned long   align;          /* alignment as a power of 2 */
 };
 
        unsigned long   align;          /* alignment as a power of 2 */
 };
 
+#ifdef KERNEL
+
+#include <mach/mach_types.h>
+
+struct vnode;
+
+/* XXX return type should be load_return_t, but mach_loader.h is not in scope */
+int fatfile_getarch_affinity(struct vnode *vp, vm_offset_t data_ptr,
+               struct fat_arch *archret, int affinity);
+int fatfile_getarch(struct vnode *vp, vm_offset_t data_ptr,
+               struct fat_arch *archret);
+int fatfile_getarch_with_bits(struct vnode *vp, integer_t archbits,
+               vm_offset_t data_ptr, struct fat_arch *archret);
+
+#endif /* KERNEL */