]> git.saurik.com Git - apple/dyld.git/blobdiff - src/dyldSyscallInterface.h
dyld-360.19.tar.gz
[apple/dyld.git] / src / dyldSyscallInterface.h
index 12be7db67af6d708ff685f47c13e57ace782ba55..01a8e8028c7d7f7663231c864684895858719db1 100644 (file)
@@ -27,6 +27,7 @@
 #define __DYLD_SYSCALL_HELPERS__
 
 #include <dirent.h>
+#include <mach-o/loader.h>
 
 #if __cplusplus
 namespace dyld {
@@ -74,6 +75,9 @@ namespace dyld {
                DIR*                    (*opendir)(const char* path);
                int                     (*readdir_r)(DIR* dirp, struct dirent* entry, struct dirent **result);
                int                     (*closedir)(DIR* dirp);
+               // Added in version 4
+               void                    (*coresymbolication_load_notifier)(void *connection, uint64_t load_timestamp, const char *image_path, const struct mach_header *mach_header);
+               void                    (*coresymbolication_unload_notifier)(void *connection, uint64_t unload_timestamp, const char *image_path, const struct mach_header *mach_header);
        };
 
        extern const struct SyscallHelpers* gSyscallHelpers;