From: Jay Freeman (saurik) Date: Mon, 16 Jun 2008 19:37:56 +0000 (+0000) Subject: Added a #define for a DYLIB_STUB, not that I need to use it, apparently. X-Git-Tag: v1.0.363~5 X-Git-Url: https://git.saurik.com/ldid.git/commitdiff_plain/efd6cd4a4be2d0725ade53a64bbb5d68bdda43ef?hp=31ad673ba62d384fcdfa4d6f64d2ca328770da1d Added a #define for a DYLIB_STUB, not that I need to use it, apparently. --- diff --git a/ldid.cpp b/ldid.cpp index dc1902e..107cbae 100644 --- a/ldid.cpp +++ b/ldid.cpp @@ -77,9 +77,10 @@ struct mach_header { #define MH_MAGIC 0xfeedface #define MH_CIGAM 0xcefaedfe -#define MH_EXECUTE 0x2 -#define MH_DYLIB 0x6 -#define MH_BUNDLE 0x8 +#define MH_EXECUTE 0x2 +#define MH_DYLIB 0x6 +#define MH_BUNDLE 0x8 +#define MH_DYLIB_STUB 0x9 struct load_command { uint32_t cmd;