实例介绍
可在VS2015上面编译通过,其他版本未测试。。。。。。
【实例截图】
【核心代码】
4744300845237325259.zip
└── libimobiledevice-msvc-master
├── appveyor.yml
├── AUTHORS
├── autogen.sh
├── build
│ ├── install-patchelf.sh
│ ├── patchdylib.sh
│ └── run-patchelf.sh
├── common
│ ├── debug.c
│ ├── debug.h
│ ├── libgen.c
│ ├── libgen.h
│ ├── Makefile.am
│ ├── socket.c
│ ├── socket.h
│ ├── thread.c
│ ├── thread.h
│ ├── userpref.c
│ ├── userpref.h
│ ├── utils.c
│ └── utils.h
├── configure.ac
├── COPYING
├── COPYING.LESSER
├── CreateNuGetPackage.ps1
├── cython
│ ├── afc.pxi
│ ├── debugserver.pxi
│ ├── diagnostics_relay.pxi
│ ├── file_relay.pxi
│ ├── heartbeat.pxi
│ ├── house_arrest.pxi
│ ├── imobiledevice.pxd
│ ├── imobiledevice.pyx
│ ├── installation_proxy.pxi
│ ├── lockdown.pxi
│ ├── Makefile.am
│ ├── misagent.pxi
│ ├── mobilebackup2.pxi
│ ├── mobilebackup.pxi
│ ├── mobile_image_mounter.pxi
│ ├── mobilesync.pxi
│ ├── notification_proxy.pxi
│ ├── restore.pxi
│ ├── sbservices.pxi
│ ├── screenshotr.pxi
│ └── webinspector.pxi
├── debian
│ ├── changelog
│ ├── compat
│ ├── control
│ ├── copyright
│ ├── docs
│ ├── gbp.conf
│ ├── libimobiledevice6.install
│ ├── libimobiledevice6.symbols
│ ├── libimobiledevice-dev.install
│ ├── libimobiledevice-utils.install
│ ├── libimobiledevice-utils.manpages
│ ├── python-imobiledevice.install
│ ├── rules
│ ├── source
│ │ └── format
│ └── watch
├── docs
│ ├── idevicebackup.1
│ ├── idevicebackup2.1
│ ├── idevicecrashreport.1
│ ├── idevicedate.1
│ ├── idevicedebug.1
│ ├── idevicedebugserverproxy.1
│ ├── idevicediagnostics.1
│ ├── ideviceenterrecovery.1
│ ├── idevice_id.1
│ ├── ideviceimagemounter.1
│ ├── ideviceinfo.1
│ ├── idevicename.1
│ ├── idevicenotificationproxy.1
│ ├── idevicepair.1
│ ├── ideviceprovision.1
│ ├── idevicescreenshot.1
│ ├── idevicesyslog.1
│ └── Makefile.am
├── doxygen.cfg.in
├── gpg-pass.sh
├── imobiledevice.vcxproj
├── include
│ ├── asprintf.h
│ ├── endianness.h
│ ├── libimobiledevice
│ │ ├── afc.h
│ │ ├── debugserver.h
│ │ ├── diagnostics_relay.h
│ │ ├── file_relay.h
│ │ ├── heartbeat.h
│ │ ├── house_arrest.h
│ │ ├── installation_proxy.h
│ │ ├── libimobiledevice.h
│ │ ├── lockdown.h
│ │ ├── misagent.h
│ │ ├── mobileactivation.h
│ │ ├── mobilebackup2.h
│ │ ├── mobilebackup.h
│ │ ├── mobile_image_mounter.h
│ │ ├── mobilesync.h
│ │ ├── notification_proxy.h
│ │ ├── pinvoke.h
│ │ ├── property_list_service.h
│ │ ├── restore.h
│ │ ├── sbservices.h
│ │ ├── screenshotr.h
│ │ ├── service.h
│ │ ├── syslog_relay.h
│ │ └── webinspector.h
│ └── Makefile.am
├── libimobiledevice.autoconfig
├── libimobiledevice.sln
├── libimobiledevice.spec
├── m4
│ ├── ac_pkg_cython.m4
│ ├── ac_python_devel.m4
│ ├── as-compiler-flag.m4
│ ├── ax_pthread.m4
│ ├── ax_swig_enable_cxx.m4
│ └── cython_python.m4
├── make-deb.sh
├── Makefile.am
├── make-rpm.sh
├── NEWS
├── NuGet.config
├── packages.config
├── ppa.asc
├── README
├── README.md
├── resource.h
├── Resource.rc
├── src
│ ├── afc.c
│ ├── afc.h
│ ├── debugserver.c
│ ├── debugserver.h
│ ├── device_link_service.c
│ ├── device_link_service.h
│ ├── diagnostics_relay.c
│ ├── diagnostics_relay.h
│ ├── file_relay.c
│ ├── file_relay.h
│ ├── heartbeat.c
│ ├── heartbeat.h
│ ├── house_arrest.c
│ ├── house_arrest.h
│ ├── idevice.c
│ ├── idevice.h
│ ├── installation_proxy.c
│ ├── installation_proxy.h
│ ├── libimobiledevice-1.0.pc.in
│ ├── lockdown.c
│ ├── lockdown.h
│ ├── Makefile.am
│ ├── misagent.c
│ ├── misagent.h
│ ├── mobileactivation.c
│ ├── mobileactivation.h
│ ├── mobilebackup2.c
│ ├── mobilebackup2.h
│ ├── mobilebackup.c
│ ├── mobilebackup.h
│ ├── mobile_image_mounter.c
│ ├── mobile_image_mounter.h
│ ├── mobilesync.c
│ ├── mobilesync.h
│ ├── msc_compat.h
│ ├── msc_config.h
│ ├── notification_proxy.c
│ ├── notification_proxy.h
│ ├── pinvoke.c
│ ├── property_list_service.c
│ ├── property_list_service.h
│ ├── restore.c
│ ├── restore.h
│ ├── sbservices.c
│ ├── sbservices.h
│ ├── screenshotr.c
│ ├── screenshotr.h
│ ├── service.c
│ ├── service.h
│ ├── syslog_relay.c
│ ├── syslog_relay.h
│ ├── webinspector.c
│ └── webinspector.h
└── tools
├── config_msvc.h
├── idevicebackup2.c
├── idevicebackup2.vcxproj
├── idevicebackup.c
├── idevicebackup.vcxproj
├── idevicecrashreport.c
├── idevicecrashreport.vcxproj
├── idevicedate.c
├── idevicedate.vcxproj
├── idevicedebug.c
├── idevicedebugserverproxy.c
├── idevicedebugserverproxy.vcxproj
├── idevicedebug.vcxproj
├── idevicediagnostics.c
├── idevicediagnostics.vcxproj
├── ideviceenterrecovery.c
├── ideviceenterrecovery.vcxproj
├── idevice_id.c
├── idevice_id.vcxproj
├── ideviceimagemounter.c
├── ideviceimagemounter.vcxproj
├── ideviceinfo.c
├── ideviceinfo.vcxproj
├── idevicename.c
├── idevicename.vcxproj
├── idevicenotificationproxy.c
├── idevicenotificationproxy.vcxproj
├── idevicepair.c
├── idevicepair.vcxproj
├── ideviceprovision.c
├── ideviceprovision.vcxproj
├── idevicescreenshot.c
├── idevicescreenshot.vcxproj
├── idevicesyslog.c
├── idevicesyslog.vcxproj
├── Makefile.am
└── packages.config
12 directories, 217 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论