├── .gitignore ├── itunes.sln └── itunes_gui ├── 127.txt ├── ItunesFunction.cpp ├── ItunesFunction.h ├── ItunesInterface.cpp ├── ItunesInterface.h ├── ItunesProtocol.cpp ├── ItunesProtocol.h ├── ItunesProtocolCommon.cpp ├── ItunesProtocolCommon.h ├── MainDlg.h ├── SendWork.cpp ├── SendWork.h ├── common.cpp ├── common.h ├── itunes.ini ├── itunes_gui.cpp ├── itunes_gui.h ├── itunes_gui.rc ├── itunes_gui.vcxproj ├── itunes_gui.vcxproj.filters ├── res └── itunes_gui.ico ├── resource.h ├── stdafx.cpp └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/.gitignore -------------------------------------------------------------------------------- /itunes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes.sln -------------------------------------------------------------------------------- /itunes_gui/127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/127.txt -------------------------------------------------------------------------------- /itunes_gui/ItunesFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/ItunesFunction.cpp -------------------------------------------------------------------------------- /itunes_gui/ItunesFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/ItunesFunction.h -------------------------------------------------------------------------------- /itunes_gui/ItunesInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/ItunesInterface.cpp -------------------------------------------------------------------------------- /itunes_gui/ItunesInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/ItunesInterface.h -------------------------------------------------------------------------------- /itunes_gui/ItunesProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/ItunesProtocol.cpp -------------------------------------------------------------------------------- /itunes_gui/ItunesProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/ItunesProtocol.h -------------------------------------------------------------------------------- /itunes_gui/ItunesProtocolCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/ItunesProtocolCommon.cpp -------------------------------------------------------------------------------- /itunes_gui/ItunesProtocolCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/ItunesProtocolCommon.h -------------------------------------------------------------------------------- /itunes_gui/MainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/MainDlg.h -------------------------------------------------------------------------------- /itunes_gui/SendWork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/SendWork.cpp -------------------------------------------------------------------------------- /itunes_gui/SendWork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/SendWork.h -------------------------------------------------------------------------------- /itunes_gui/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/common.cpp -------------------------------------------------------------------------------- /itunes_gui/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/common.h -------------------------------------------------------------------------------- /itunes_gui/itunes.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/itunes.ini -------------------------------------------------------------------------------- /itunes_gui/itunes_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/itunes_gui.cpp -------------------------------------------------------------------------------- /itunes_gui/itunes_gui.h: -------------------------------------------------------------------------------- 1 | // itunes_gui.h 2 | -------------------------------------------------------------------------------- /itunes_gui/itunes_gui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/itunes_gui.rc -------------------------------------------------------------------------------- /itunes_gui/itunes_gui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/itunes_gui.vcxproj -------------------------------------------------------------------------------- /itunes_gui/itunes_gui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/itunes_gui.vcxproj.filters -------------------------------------------------------------------------------- /itunes_gui/res/itunes_gui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/res/itunes_gui.ico -------------------------------------------------------------------------------- /itunes_gui/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/resource.h -------------------------------------------------------------------------------- /itunes_gui/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/stdafx.cpp -------------------------------------------------------------------------------- /itunes_gui/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpcdma/appid_bypass/HEAD/itunes_gui/stdafx.h --------------------------------------------------------------------------------