gitextract_ddc_e4g4/ ├── .clang-format ├── .gitattributes ├── .gitignore ├── .vscode/ │ ├── c_cpp_properties.json │ └── settings.json ├── AVFCapture/ │ └── AVFCapture.h ├── AVFoundation/ │ └── AVFoundation.h ├── AppSupport/ │ ├── AppSupport.h │ └── Types.h ├── AssetsLibraryServices/ │ └── AssetsLibraryServices.h ├── AudioToolbox/ │ ├── AudioToolbox.h │ └── Types.h ├── BaseTypes.h ├── CommonCrypto/ │ ├── CommonCrypto.h │ └── Types.h ├── CoreAnimation/ │ ├── CoreAnimation.h │ └── Types.h ├── CoreAudio/ │ ├── CoreAudio.h │ └── Types.h ├── CoreFoundation/ │ ├── CoreFoundation.h │ └── Types.h ├── CoreGraphics/ │ ├── CoreGraphics.h │ └── Types.h ├── CoreMedia/ │ ├── CoreMedia.h │ └── Types.h ├── CoreServices/ │ ├── CoreServices.h │ └── Types.h ├── CoreText/ │ ├── CoreText.h │ └── Types.h ├── CoreVideo/ │ ├── CoreVideo.h │ └── Types.h ├── CydiaSubstrate/ │ ├── CydiaSubstrate.h │ └── Types.h ├── Darwin/ │ ├── Darwin.h │ └── Types.h ├── Foundation/ │ ├── Foundation.h │ └── Types.h ├── GraphicsServices/ │ ├── GraphicsServices.h │ └── Types.h ├── IDA.h ├── IDA.til ├── IDA32.til ├── IOKit/ │ ├── IOKit.h │ ├── NXTypes.h │ └── Types.h ├── IOMobileFramebuffer/ │ ├── IOMobileFramebuffer.h │ └── Types.h ├── IOSurface/ │ ├── IOSurface.h │ └── Types.h ├── Kernel/ │ ├── Kernel.h │ └── Types.h ├── LICENSE ├── MediaRemote/ │ ├── MediaRemote.h │ └── Types.h ├── MobileGestalt/ │ ├── MobileGestalt.h │ └── Types.h ├── PowerLog/ │ └── PowerLog.h ├── QuartzCore/ │ ├── QuartzCore.h │ └── Types.h ├── README.md ├── Security/ │ ├── Security.h │ └── Types.h ├── SoftLinking/ │ └── SoftLinking.h ├── SpringBoard/ │ └── Types.h ├── SpringBoardHome/ │ └── Types.h ├── Swift/ │ ├── Swift.h │ └── Types.h ├── System/ │ ├── System.h │ └── Types.h ├── SystemConfiguration/ │ ├── SystemConfiguration.h │ └── Types.h ├── Types.h ├── UIKit/ │ ├── Types.h │ └── UIKit.h ├── dyld/ │ ├── Types.h │ └── dyld.h ├── fishhook/ │ └── fishhook.h ├── icu/ │ ├── Types.h │ └── icu.h ├── objc/ │ ├── Types.h │ └── objc.h ├── os/ │ ├── Types.h │ └── os.h ├── pthread/ │ ├── Types.h │ └── pthread.h ├── sandbox/ │ ├── Types.h │ └── sandbox.h ├── sqlite/ │ ├── Types.h │ └── sqlite.h └── xpc/ ├── Types.h └── xpc.h