]> git.saurik.com Git - ldid.git/commitdiff
Added a #define for a DYLIB_STUB, not that I need to use it, apparently.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 16 Jun 2008 19:37:56 +0000 (19:37 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 16 Jun 2008 19:37:56 +0000 (19:37 +0000)
ldid.cpp

index dc1902e5463158ca2edf5de79b2522625101707c..107cbaecd1051a9e26c13f35e4672782d6523124 100644 (file)
--- a/ldid.cpp
+++ b/ldid.cpp
@@ -77,9 +77,10 @@ struct mach_header {
 #define MH_MAGIC 0xfeedface
 #define MH_CIGAM 0xcefaedfe
 
 #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;
 
 struct load_command {
     uint32_t cmd;