├── .gitignore ├── Makefile ├── MobileDevice.framework ├── MobileDevice.h ├── deviceconsole.xcodeproj └── project.pbxproj └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpetrich/deviceconsole/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpetrich/deviceconsole/HEAD/Makefile -------------------------------------------------------------------------------- /MobileDevice.framework: -------------------------------------------------------------------------------- 1 | /System/Library/PrivateFrameworks/MobileDevice.framework -------------------------------------------------------------------------------- /MobileDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpetrich/deviceconsole/HEAD/MobileDevice.h -------------------------------------------------------------------------------- /deviceconsole.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpetrich/deviceconsole/HEAD/deviceconsole.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpetrich/deviceconsole/HEAD/main.c --------------------------------------------------------------------------------