├── Debug └── protocol │ ├── ForFreeAppSavePwdData.txt │ ├── a2kPostData.txt │ ├── activeAppEvent.txt │ ├── agreeBuyProductData.txt │ ├── agreePaidBuyProductData.txt │ ├── ampClientPerfEvent.txt │ ├── anonymousFinishProvisionData.txt │ ├── appLaunchEvent.txt │ ├── buyAuthSuccessEvent.txt │ ├── buyConfirmEvent.txt │ ├── buyEvent.txt │ ├── buyInitiateEvent.txt │ ├── buyProductData.txt │ ├── captchaRequiredBuyProductData.txt │ ├── commentEvent.txt │ ├── finishImpressionEvent.txt │ ├── finishMachineProvisionData.txt │ ├── gsasPostData.txt │ ├── impressionsEvent.txt │ ├── loginXmlData.txt │ ├── m1PostData.txt │ ├── openAppEvent.txt │ ├── pageEvent.txt │ ├── pageRanderAmpClientPerfEvent.txt │ ├── pageSearchEvent.txt │ ├── paidBuyProductData.txt │ ├── randomStr.js │ ├── registerData.txt │ ├── reloginBuyAlwayNeedPwdData.txt │ ├── reloginBuyData.txt │ ├── reloginPaidBuyAlwayNeedPwdData.txt │ ├── reloginPaidBuyData.txt │ ├── relogindata.txt │ ├── searchSumbitEvent.txt │ ├── submitPaidBuyProductData.txt │ └── targetAppPageDetailEvent.txt ├── Release └── protocol │ ├── ForFreeAppSavePwdData.txt │ ├── a2kPostData.txt │ ├── activeAppEvent.txt │ ├── agreeBuyProductData.txt │ ├── agreePaidBuyProductData.txt │ ├── ampClientPerfEvent.txt │ ├── anonymousFinishProvisionData.txt │ ├── appLaunchEvent.txt │ ├── buyAuthSuccessEvent.txt │ ├── buyConfirmEvent.txt │ ├── buyEvent.txt │ ├── buyInitiateEvent.txt │ ├── buyProductData.txt │ ├── captchaRequiredBuyProductData.txt │ ├── commentEvent.txt │ ├── finishImpressionEvent.txt │ ├── finishMachineProvisionData.txt │ ├── gsasPostData.txt │ ├── impressionsEvent.txt │ ├── loginXmlData.txt │ ├── m1PostData.txt │ ├── openAppEvent.txt │ ├── pageEvent.txt │ ├── pageRanderAmpClientPerfEvent.txt │ ├── pageSearchEvent.txt │ ├── paidBuyProductData.txt │ ├── randomStr.js │ ├── registerData.txt │ ├── reloginBuyAlwayNeedPwdData.txt │ ├── reloginBuyData.txt │ ├── reloginPaidBuyAlwayNeedPwdData.txt │ ├── reloginPaidBuyData.txt │ ├── relogindata.txt │ ├── searchSumbitEvent.txt │ ├── submitPaidBuyProductData.txt │ └── targetAppPageDetailEvent.txt ├── iTunes.rar ├── msinttypes ├── inttypes.h └── stdint.h ├── xhASO.sln ├── xhASO ├── AppOctetStream.cpp ├── AppOctetStream.h ├── AppleIdDlg.cpp ├── AppleIdDlg.h ├── AutoDial.cpp ├── AutoDial.h ├── Base64.cpp ├── Base64.h ├── DataProvider.cpp ├── DataProvider.h ├── Debug │ └── BuildLog.htm ├── DialupLoginDlg.cpp ├── DialupLoginDlg.h ├── EmailDomainMgr.cpp ├── EmailDomainMgr.h ├── LoadCommentDlg.cpp ├── LoadCommentDlg.h ├── MailMessage.cpp ├── MailMessage.h ├── ReadMe.txt ├── Release │ └── BuildLog.htm ├── SMTP.cpp ├── SMTP.h ├── SingleInstanceBase.h ├── SocketComm.cpp ├── SocketComm.h ├── TextPlain.cpp ├── TextPlain.h ├── UserName.h ├── VPNIPDlg.cpp ├── VPNIPDlg.h ├── VPNloginDlg.cpp ├── VPNloginDlg.h ├── accountInfo.h ├── adapterAddr.cpp ├── adapterAddr.h ├── cryptAlgorithm.h ├── encryptAlgorithm.cpp ├── json │ ├── allocator.h │ ├── assertions.h │ ├── autolink.h │ ├── config.h │ ├── features.h │ ├── forwards.h │ ├── json.h │ ├── reader.h │ ├── value.h │ ├── version.h │ └── writer.h ├── lib_json │ ├── CMakeLists.txt │ ├── json_reader.cpp │ ├── json_tool.h │ ├── json_value.cpp │ ├── json_valueiterator.inl │ ├── json_writer.cpp │ ├── sconscript │ └── version.h.in ├── md5.cpp ├── md5.h ├── memoryshared.cpp ├── memoryshared.h ├── requestInterface.cpp ├── requestInterface.h ├── res │ ├── myicon.ico │ └── xhASO.rc2 ├── resource.h ├── statusData.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── vpndial.cpp ├── vpndial.h ├── xhASO.aps ├── xhASO.cpp ├── xhASO.h ├── xhASO.rc ├── xhASO.vcproj ├── xhASO.vcproj.GERGUL-PC.Administrator.user ├── xhASO.vcproj.LS-IT-07221.Administrator.user ├── xhASODlg.cpp └── xhASODlg.h ├── xhClient ├── Debug │ └── BuildLog.htm ├── Release │ └── BuildLog.htm ├── Resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── xhClient.cpp ├── xhClient.h ├── xhClient.rc ├── xhClient.vcproj ├── xhClient.vcproj.GERGUL-PC.Administrator.user └── xhClient.vcproj.LS-IT-07221.Administrator.user ├── xhExecute ├── Debug │ └── BuildLog.htm ├── ReadMe.txt ├── Release │ └── BuildLog.htm ├── Resource.h ├── accountInfo.h ├── cryptAlgorithm.h ├── encryptAlgorithm.cpp ├── hook.cpp ├── hook.h ├── memoryshared.cpp ├── memoryshared.h ├── res │ ├── myexecute.ico │ └── xhExecute.rc2 ├── statusData.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── xhExecute.cpp ├── xhExecute.h ├── xhExecute.rc ├── xhExecute.vcproj ├── xhExecute.vcproj.GERGUL-PC.Administrator.user ├── xhExecute.vcproj.LS-IT-07221.Administrator.user ├── xhExecuteDlg.cpp └── xhExecuteDlg.h ├── xhRegAppleId ├── DataProvider.cpp ├── DataProvider.h ├── Debug │ └── BuildLog.htm ├── Release │ └── BuildLog.htm ├── UserName.h ├── accountInfo.h ├── cryptAlgorithm.h ├── encryptAlgorithm.cpp ├── md5.cpp ├── md5.h ├── res │ ├── xhRegAppleId.ico │ └── xhRegAppleId.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── xhRegAppleId.cpp ├── xhRegAppleId.h ├── xhRegAppleId.rc ├── xhRegAppleId.vcproj ├── xhRegAppleId.vcproj.GERGUL-PC.Administrator.user ├── xhRegAppleId.vcproj.LS-IT-07221.Administrator.user ├── xhRegAppleIdDlg.cpp └── xhRegAppleIdDlg.h ├── xhUpdater ├── Debug │ └── BuildLog.htm ├── HttpSocket.cpp ├── HttpSocket.h ├── ReadMe.txt ├── Release │ └── BuildLog.htm ├── Resource.h ├── res │ ├── Downloads.ico │ ├── xhUpdater.ico │ └── xhUpdater.rc2 ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── xhUpdater.aps ├── xhUpdater.cpp ├── xhUpdater.h ├── xhUpdater.rc ├── xhUpdater.vcproj ├── xhUpdater.vcproj.GERGUL-PC.Administrator.user ├── xhUpdater.vcproj.LS-IT-07221.Administrator.user ├── xhUpdaterDlg.cpp └── xhUpdaterDlg.h ├── xhiTunes ├── Debug │ └── BuildLog.htm ├── ReadMe.txt ├── Release │ └── BuildLog.htm ├── base64.c ├── base64.h ├── cryptAlgorithm.h ├── dllmain.cpp ├── encryptAlgorithm.cpp ├── enterpoint.cpp ├── enterpoint.h ├── gsaservices.cpp ├── gsaservices.h ├── hook.cpp ├── hook.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── xhiTunes.cpp ├── xhiTunes.h ├── xhiTunes.vcproj ├── xhiTunes.vcproj.GERGUL-PC.Administrator.user └── xhiTunes.vcproj.LS-IT-07221.Administrator.user └── xhwork ├── CaptchaPageInfo.cpp ├── CaptchaPageInfo.h ├── CxhLog.cpp ├── CxhLog.h ├── Debug └── BuildLog.htm ├── GZipHelper.h ├── GifProcesser.cpp ├── GifProcesser.h ├── HttpRequest.cpp ├── HttpRequest.h ├── ReadMe.txt ├── Release └── BuildLog.htm ├── Sha1.c ├── Sha1.h ├── Util.cpp ├── Util.h ├── ZLIB.LIB ├── Zip ├── adler32.c ├── compress.c ├── crc32.c ├── deflate.c ├── deflate.h ├── gzio.c ├── infblock.c ├── infblock.h ├── infcodes.c ├── infcodes.h ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inftrees.c ├── inftrees.h ├── infutil.c ├── infutil.h ├── maketree.c ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h ├── accountInfo.h ├── comment.cpp ├── comment.h ├── cryptAlgorithm.h ├── curl ├── curl.h ├── curlbuild.h ├── curlrules.h ├── curlver.h ├── easy.h ├── mprintf.h ├── multi.h ├── stdcheaders.h └── typecheck-gcc.h ├── dllmain.cpp ├── encryptAlgorithm.cpp ├── gzip.h ├── json ├── allocator.h ├── assertions.h ├── autolink.h ├── config.h ├── features.h ├── forwards.h ├── json.h ├── reader.h ├── value.h ├── version.h └── writer.h ├── json_batchallocator.h ├── json_internalarray.inl ├── json_internalmap.inl ├── json_reader.cpp ├── json_value.cpp ├── json_valueiterator.inl ├── json_writer.cpp ├── jsonlib.lib ├── lib_json ├── CMakeLists.txt ├── json_reader.cpp ├── json_tool.h ├── json_value.cpp ├── json_valueiterator.inl ├── json_writer.cpp ├── sconscript └── version.h.in ├── libcurl_imp.lib ├── libcurld_imp.lib ├── md5.cpp ├── md5.h ├── mem_lock.cpp ├── mem_lock.h ├── registerAppleId.cpp ├── registerAppleId.h ├── secdata.h ├── seitunes.cpp ├── seitunes.h ├── splookupoffer.cpp ├── splookupoffer.h ├── statusData.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── urlcode.cpp ├── urlcode.h ├── viewpage.cpp ├── viewpage.h ├── xhwork.cpp ├── xhwork.h ├── xhwork.vcproj ├── xhwork.vcproj.GERGUL-PC.Administrator.user ├── xhwork.vcproj.LS-IT-07221.Administrator.user └── xhwork.vcproj.XIAOHE.Administrator.user /Debug/protocol/ForFreeAppSavePwdData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/ForFreeAppSavePwdData.txt -------------------------------------------------------------------------------- /Debug/protocol/a2kPostData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/a2kPostData.txt -------------------------------------------------------------------------------- /Debug/protocol/activeAppEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/activeAppEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/agreeBuyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/agreeBuyProductData.txt -------------------------------------------------------------------------------- /Debug/protocol/agreePaidBuyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/agreePaidBuyProductData.txt -------------------------------------------------------------------------------- /Debug/protocol/ampClientPerfEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/ampClientPerfEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/anonymousFinishProvisionData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/anonymousFinishProvisionData.txt -------------------------------------------------------------------------------- /Debug/protocol/appLaunchEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/appLaunchEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/buyAuthSuccessEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/buyAuthSuccessEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/buyConfirmEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/buyConfirmEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/buyEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/buyEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/buyInitiateEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/buyInitiateEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/buyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/buyProductData.txt -------------------------------------------------------------------------------- /Debug/protocol/captchaRequiredBuyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/captchaRequiredBuyProductData.txt -------------------------------------------------------------------------------- /Debug/protocol/commentEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/commentEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/finishImpressionEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/finishImpressionEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/finishMachineProvisionData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/finishMachineProvisionData.txt -------------------------------------------------------------------------------- /Debug/protocol/gsasPostData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/gsasPostData.txt -------------------------------------------------------------------------------- /Debug/protocol/impressionsEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/impressionsEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/loginXmlData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/loginXmlData.txt -------------------------------------------------------------------------------- /Debug/protocol/m1PostData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/m1PostData.txt -------------------------------------------------------------------------------- /Debug/protocol/openAppEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/openAppEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/pageEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/pageEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/pageRanderAmpClientPerfEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/pageRanderAmpClientPerfEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/pageSearchEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/pageSearchEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/paidBuyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/paidBuyProductData.txt -------------------------------------------------------------------------------- /Debug/protocol/randomStr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/randomStr.js -------------------------------------------------------------------------------- /Debug/protocol/registerData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/registerData.txt -------------------------------------------------------------------------------- /Debug/protocol/reloginBuyAlwayNeedPwdData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/reloginBuyAlwayNeedPwdData.txt -------------------------------------------------------------------------------- /Debug/protocol/reloginBuyData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/reloginBuyData.txt -------------------------------------------------------------------------------- /Debug/protocol/reloginPaidBuyAlwayNeedPwdData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/reloginPaidBuyAlwayNeedPwdData.txt -------------------------------------------------------------------------------- /Debug/protocol/reloginPaidBuyData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/reloginPaidBuyData.txt -------------------------------------------------------------------------------- /Debug/protocol/relogindata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/relogindata.txt -------------------------------------------------------------------------------- /Debug/protocol/searchSumbitEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/searchSumbitEvent.txt -------------------------------------------------------------------------------- /Debug/protocol/submitPaidBuyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/submitPaidBuyProductData.txt -------------------------------------------------------------------------------- /Debug/protocol/targetAppPageDetailEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Debug/protocol/targetAppPageDetailEvent.txt -------------------------------------------------------------------------------- /Release/protocol/ForFreeAppSavePwdData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/ForFreeAppSavePwdData.txt -------------------------------------------------------------------------------- /Release/protocol/a2kPostData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/a2kPostData.txt -------------------------------------------------------------------------------- /Release/protocol/activeAppEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/activeAppEvent.txt -------------------------------------------------------------------------------- /Release/protocol/agreeBuyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/agreeBuyProductData.txt -------------------------------------------------------------------------------- /Release/protocol/agreePaidBuyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/agreePaidBuyProductData.txt -------------------------------------------------------------------------------- /Release/protocol/ampClientPerfEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/ampClientPerfEvent.txt -------------------------------------------------------------------------------- /Release/protocol/anonymousFinishProvisionData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/anonymousFinishProvisionData.txt -------------------------------------------------------------------------------- /Release/protocol/appLaunchEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/appLaunchEvent.txt -------------------------------------------------------------------------------- /Release/protocol/buyAuthSuccessEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/buyAuthSuccessEvent.txt -------------------------------------------------------------------------------- /Release/protocol/buyConfirmEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/buyConfirmEvent.txt -------------------------------------------------------------------------------- /Release/protocol/buyEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/buyEvent.txt -------------------------------------------------------------------------------- /Release/protocol/buyInitiateEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/buyInitiateEvent.txt -------------------------------------------------------------------------------- /Release/protocol/buyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/buyProductData.txt -------------------------------------------------------------------------------- /Release/protocol/captchaRequiredBuyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/captchaRequiredBuyProductData.txt -------------------------------------------------------------------------------- /Release/protocol/commentEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/commentEvent.txt -------------------------------------------------------------------------------- /Release/protocol/finishImpressionEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/finishImpressionEvent.txt -------------------------------------------------------------------------------- /Release/protocol/finishMachineProvisionData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/finishMachineProvisionData.txt -------------------------------------------------------------------------------- /Release/protocol/gsasPostData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/gsasPostData.txt -------------------------------------------------------------------------------- /Release/protocol/impressionsEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/impressionsEvent.txt -------------------------------------------------------------------------------- /Release/protocol/loginXmlData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/loginXmlData.txt -------------------------------------------------------------------------------- /Release/protocol/m1PostData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/m1PostData.txt -------------------------------------------------------------------------------- /Release/protocol/openAppEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/openAppEvent.txt -------------------------------------------------------------------------------- /Release/protocol/pageEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/pageEvent.txt -------------------------------------------------------------------------------- /Release/protocol/pageRanderAmpClientPerfEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/pageRanderAmpClientPerfEvent.txt -------------------------------------------------------------------------------- /Release/protocol/pageSearchEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/pageSearchEvent.txt -------------------------------------------------------------------------------- /Release/protocol/paidBuyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/paidBuyProductData.txt -------------------------------------------------------------------------------- /Release/protocol/randomStr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/randomStr.js -------------------------------------------------------------------------------- /Release/protocol/registerData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/registerData.txt -------------------------------------------------------------------------------- /Release/protocol/reloginBuyAlwayNeedPwdData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/reloginBuyAlwayNeedPwdData.txt -------------------------------------------------------------------------------- /Release/protocol/reloginBuyData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/reloginBuyData.txt -------------------------------------------------------------------------------- /Release/protocol/reloginPaidBuyAlwayNeedPwdData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/reloginPaidBuyAlwayNeedPwdData.txt -------------------------------------------------------------------------------- /Release/protocol/reloginPaidBuyData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/reloginPaidBuyData.txt -------------------------------------------------------------------------------- /Release/protocol/relogindata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/relogindata.txt -------------------------------------------------------------------------------- /Release/protocol/searchSumbitEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/searchSumbitEvent.txt -------------------------------------------------------------------------------- /Release/protocol/submitPaidBuyProductData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/submitPaidBuyProductData.txt -------------------------------------------------------------------------------- /Release/protocol/targetAppPageDetailEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/Release/protocol/targetAppPageDetailEvent.txt -------------------------------------------------------------------------------- /iTunes.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/iTunes.rar -------------------------------------------------------------------------------- /msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/msinttypes/inttypes.h -------------------------------------------------------------------------------- /msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/msinttypes/stdint.h -------------------------------------------------------------------------------- /xhASO.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO.sln -------------------------------------------------------------------------------- /xhASO/AppOctetStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/AppOctetStream.cpp -------------------------------------------------------------------------------- /xhASO/AppOctetStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/AppOctetStream.h -------------------------------------------------------------------------------- /xhASO/AppleIdDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/AppleIdDlg.cpp -------------------------------------------------------------------------------- /xhASO/AppleIdDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/AppleIdDlg.h -------------------------------------------------------------------------------- /xhASO/AutoDial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/AutoDial.cpp -------------------------------------------------------------------------------- /xhASO/AutoDial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/AutoDial.h -------------------------------------------------------------------------------- /xhASO/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/Base64.cpp -------------------------------------------------------------------------------- /xhASO/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/Base64.h -------------------------------------------------------------------------------- /xhASO/DataProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/DataProvider.cpp -------------------------------------------------------------------------------- /xhASO/DataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/DataProvider.h -------------------------------------------------------------------------------- /xhASO/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/Debug/BuildLog.htm -------------------------------------------------------------------------------- /xhASO/DialupLoginDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/DialupLoginDlg.cpp -------------------------------------------------------------------------------- /xhASO/DialupLoginDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/DialupLoginDlg.h -------------------------------------------------------------------------------- /xhASO/EmailDomainMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/EmailDomainMgr.cpp -------------------------------------------------------------------------------- /xhASO/EmailDomainMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/EmailDomainMgr.h -------------------------------------------------------------------------------- /xhASO/LoadCommentDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/LoadCommentDlg.cpp -------------------------------------------------------------------------------- /xhASO/LoadCommentDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/LoadCommentDlg.h -------------------------------------------------------------------------------- /xhASO/MailMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/MailMessage.cpp -------------------------------------------------------------------------------- /xhASO/MailMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/MailMessage.h -------------------------------------------------------------------------------- /xhASO/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/ReadMe.txt -------------------------------------------------------------------------------- /xhASO/Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/Release/BuildLog.htm -------------------------------------------------------------------------------- /xhASO/SMTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/SMTP.cpp -------------------------------------------------------------------------------- /xhASO/SMTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/SMTP.h -------------------------------------------------------------------------------- /xhASO/SingleInstanceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/SingleInstanceBase.h -------------------------------------------------------------------------------- /xhASO/SocketComm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/SocketComm.cpp -------------------------------------------------------------------------------- /xhASO/SocketComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/SocketComm.h -------------------------------------------------------------------------------- /xhASO/TextPlain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/TextPlain.cpp -------------------------------------------------------------------------------- /xhASO/TextPlain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/TextPlain.h -------------------------------------------------------------------------------- /xhASO/UserName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/UserName.h -------------------------------------------------------------------------------- /xhASO/VPNIPDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/VPNIPDlg.cpp -------------------------------------------------------------------------------- /xhASO/VPNIPDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/VPNIPDlg.h -------------------------------------------------------------------------------- /xhASO/VPNloginDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/VPNloginDlg.cpp -------------------------------------------------------------------------------- /xhASO/VPNloginDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/VPNloginDlg.h -------------------------------------------------------------------------------- /xhASO/accountInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/accountInfo.h -------------------------------------------------------------------------------- /xhASO/adapterAddr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/adapterAddr.cpp -------------------------------------------------------------------------------- /xhASO/adapterAddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/adapterAddr.h -------------------------------------------------------------------------------- /xhASO/cryptAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/cryptAlgorithm.h -------------------------------------------------------------------------------- /xhASO/encryptAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/encryptAlgorithm.cpp -------------------------------------------------------------------------------- /xhASO/json/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/allocator.h -------------------------------------------------------------------------------- /xhASO/json/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/assertions.h -------------------------------------------------------------------------------- /xhASO/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/autolink.h -------------------------------------------------------------------------------- /xhASO/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/config.h -------------------------------------------------------------------------------- /xhASO/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/features.h -------------------------------------------------------------------------------- /xhASO/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/forwards.h -------------------------------------------------------------------------------- /xhASO/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/json.h -------------------------------------------------------------------------------- /xhASO/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/reader.h -------------------------------------------------------------------------------- /xhASO/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/value.h -------------------------------------------------------------------------------- /xhASO/json/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/version.h -------------------------------------------------------------------------------- /xhASO/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/json/writer.h -------------------------------------------------------------------------------- /xhASO/lib_json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/lib_json/CMakeLists.txt -------------------------------------------------------------------------------- /xhASO/lib_json/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/lib_json/json_reader.cpp -------------------------------------------------------------------------------- /xhASO/lib_json/json_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/lib_json/json_tool.h -------------------------------------------------------------------------------- /xhASO/lib_json/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/lib_json/json_value.cpp -------------------------------------------------------------------------------- /xhASO/lib_json/json_valueiterator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/lib_json/json_valueiterator.inl -------------------------------------------------------------------------------- /xhASO/lib_json/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/lib_json/json_writer.cpp -------------------------------------------------------------------------------- /xhASO/lib_json/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/lib_json/sconscript -------------------------------------------------------------------------------- /xhASO/lib_json/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/lib_json/version.h.in -------------------------------------------------------------------------------- /xhASO/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/md5.cpp -------------------------------------------------------------------------------- /xhASO/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/md5.h -------------------------------------------------------------------------------- /xhASO/memoryshared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/memoryshared.cpp -------------------------------------------------------------------------------- /xhASO/memoryshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/memoryshared.h -------------------------------------------------------------------------------- /xhASO/requestInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/requestInterface.cpp -------------------------------------------------------------------------------- /xhASO/requestInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/requestInterface.h -------------------------------------------------------------------------------- /xhASO/res/myicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/res/myicon.ico -------------------------------------------------------------------------------- /xhASO/res/xhASO.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/res/xhASO.rc2 -------------------------------------------------------------------------------- /xhASO/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/resource.h -------------------------------------------------------------------------------- /xhASO/statusData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/statusData.h -------------------------------------------------------------------------------- /xhASO/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/stdafx.cpp -------------------------------------------------------------------------------- /xhASO/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/stdafx.h -------------------------------------------------------------------------------- /xhASO/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/targetver.h -------------------------------------------------------------------------------- /xhASO/vpndial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/vpndial.cpp -------------------------------------------------------------------------------- /xhASO/vpndial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/vpndial.h -------------------------------------------------------------------------------- /xhASO/xhASO.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/xhASO.aps -------------------------------------------------------------------------------- /xhASO/xhASO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/xhASO.cpp -------------------------------------------------------------------------------- /xhASO/xhASO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/xhASO.h -------------------------------------------------------------------------------- /xhASO/xhASO.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/xhASO.rc -------------------------------------------------------------------------------- /xhASO/xhASO.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/xhASO.vcproj -------------------------------------------------------------------------------- /xhASO/xhASO.vcproj.GERGUL-PC.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/xhASO.vcproj.GERGUL-PC.Administrator.user -------------------------------------------------------------------------------- /xhASO/xhASO.vcproj.LS-IT-07221.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/xhASO.vcproj.LS-IT-07221.Administrator.user -------------------------------------------------------------------------------- /xhASO/xhASODlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/xhASODlg.cpp -------------------------------------------------------------------------------- /xhASO/xhASODlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhASO/xhASODlg.h -------------------------------------------------------------------------------- /xhClient/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/Debug/BuildLog.htm -------------------------------------------------------------------------------- /xhClient/Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/Release/BuildLog.htm -------------------------------------------------------------------------------- /xhClient/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/Resource.h -------------------------------------------------------------------------------- /xhClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/stdafx.cpp -------------------------------------------------------------------------------- /xhClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/stdafx.h -------------------------------------------------------------------------------- /xhClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/targetver.h -------------------------------------------------------------------------------- /xhClient/xhClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/xhClient.cpp -------------------------------------------------------------------------------- /xhClient/xhClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/xhClient.h -------------------------------------------------------------------------------- /xhClient/xhClient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/xhClient.rc -------------------------------------------------------------------------------- /xhClient/xhClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/xhClient.vcproj -------------------------------------------------------------------------------- /xhClient/xhClient.vcproj.GERGUL-PC.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/xhClient.vcproj.GERGUL-PC.Administrator.user -------------------------------------------------------------------------------- /xhClient/xhClient.vcproj.LS-IT-07221.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhClient/xhClient.vcproj.LS-IT-07221.Administrator.user -------------------------------------------------------------------------------- /xhExecute/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/Debug/BuildLog.htm -------------------------------------------------------------------------------- /xhExecute/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/ReadMe.txt -------------------------------------------------------------------------------- /xhExecute/Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/Release/BuildLog.htm -------------------------------------------------------------------------------- /xhExecute/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/Resource.h -------------------------------------------------------------------------------- /xhExecute/accountInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/accountInfo.h -------------------------------------------------------------------------------- /xhExecute/cryptAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/cryptAlgorithm.h -------------------------------------------------------------------------------- /xhExecute/encryptAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/encryptAlgorithm.cpp -------------------------------------------------------------------------------- /xhExecute/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/hook.cpp -------------------------------------------------------------------------------- /xhExecute/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/hook.h -------------------------------------------------------------------------------- /xhExecute/memoryshared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/memoryshared.cpp -------------------------------------------------------------------------------- /xhExecute/memoryshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/memoryshared.h -------------------------------------------------------------------------------- /xhExecute/res/myexecute.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/res/myexecute.ico -------------------------------------------------------------------------------- /xhExecute/res/xhExecute.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/res/xhExecute.rc2 -------------------------------------------------------------------------------- /xhExecute/statusData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/statusData.h -------------------------------------------------------------------------------- /xhExecute/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/stdafx.cpp -------------------------------------------------------------------------------- /xhExecute/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/stdafx.h -------------------------------------------------------------------------------- /xhExecute/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/targetver.h -------------------------------------------------------------------------------- /xhExecute/xhExecute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/xhExecute.cpp -------------------------------------------------------------------------------- /xhExecute/xhExecute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/xhExecute.h -------------------------------------------------------------------------------- /xhExecute/xhExecute.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/xhExecute.rc -------------------------------------------------------------------------------- /xhExecute/xhExecute.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/xhExecute.vcproj -------------------------------------------------------------------------------- /xhExecute/xhExecute.vcproj.GERGUL-PC.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/xhExecute.vcproj.GERGUL-PC.Administrator.user -------------------------------------------------------------------------------- /xhExecute/xhExecute.vcproj.LS-IT-07221.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/xhExecute.vcproj.LS-IT-07221.Administrator.user -------------------------------------------------------------------------------- /xhExecute/xhExecuteDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/xhExecuteDlg.cpp -------------------------------------------------------------------------------- /xhExecute/xhExecuteDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhExecute/xhExecuteDlg.h -------------------------------------------------------------------------------- /xhRegAppleId/DataProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/DataProvider.cpp -------------------------------------------------------------------------------- /xhRegAppleId/DataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/DataProvider.h -------------------------------------------------------------------------------- /xhRegAppleId/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/Debug/BuildLog.htm -------------------------------------------------------------------------------- /xhRegAppleId/Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/Release/BuildLog.htm -------------------------------------------------------------------------------- /xhRegAppleId/UserName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/UserName.h -------------------------------------------------------------------------------- /xhRegAppleId/accountInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/accountInfo.h -------------------------------------------------------------------------------- /xhRegAppleId/cryptAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/cryptAlgorithm.h -------------------------------------------------------------------------------- /xhRegAppleId/encryptAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/encryptAlgorithm.cpp -------------------------------------------------------------------------------- /xhRegAppleId/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/md5.cpp -------------------------------------------------------------------------------- /xhRegAppleId/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/md5.h -------------------------------------------------------------------------------- /xhRegAppleId/res/xhRegAppleId.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/res/xhRegAppleId.ico -------------------------------------------------------------------------------- /xhRegAppleId/res/xhRegAppleId.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/res/xhRegAppleId.rc2 -------------------------------------------------------------------------------- /xhRegAppleId/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/resource.h -------------------------------------------------------------------------------- /xhRegAppleId/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/stdafx.cpp -------------------------------------------------------------------------------- /xhRegAppleId/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/stdafx.h -------------------------------------------------------------------------------- /xhRegAppleId/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/targetver.h -------------------------------------------------------------------------------- /xhRegAppleId/xhRegAppleId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/xhRegAppleId.cpp -------------------------------------------------------------------------------- /xhRegAppleId/xhRegAppleId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/xhRegAppleId.h -------------------------------------------------------------------------------- /xhRegAppleId/xhRegAppleId.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/xhRegAppleId.rc -------------------------------------------------------------------------------- /xhRegAppleId/xhRegAppleId.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/xhRegAppleId.vcproj -------------------------------------------------------------------------------- /xhRegAppleId/xhRegAppleId.vcproj.GERGUL-PC.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/xhRegAppleId.vcproj.GERGUL-PC.Administrator.user -------------------------------------------------------------------------------- /xhRegAppleId/xhRegAppleId.vcproj.LS-IT-07221.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/xhRegAppleId.vcproj.LS-IT-07221.Administrator.user -------------------------------------------------------------------------------- /xhRegAppleId/xhRegAppleIdDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/xhRegAppleIdDlg.cpp -------------------------------------------------------------------------------- /xhRegAppleId/xhRegAppleIdDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhRegAppleId/xhRegAppleIdDlg.h -------------------------------------------------------------------------------- /xhUpdater/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/Debug/BuildLog.htm -------------------------------------------------------------------------------- /xhUpdater/HttpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/HttpSocket.cpp -------------------------------------------------------------------------------- /xhUpdater/HttpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/HttpSocket.h -------------------------------------------------------------------------------- /xhUpdater/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/ReadMe.txt -------------------------------------------------------------------------------- /xhUpdater/Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/Release/BuildLog.htm -------------------------------------------------------------------------------- /xhUpdater/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/Resource.h -------------------------------------------------------------------------------- /xhUpdater/res/Downloads.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/res/Downloads.ico -------------------------------------------------------------------------------- /xhUpdater/res/xhUpdater.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/res/xhUpdater.ico -------------------------------------------------------------------------------- /xhUpdater/res/xhUpdater.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/res/xhUpdater.rc2 -------------------------------------------------------------------------------- /xhUpdater/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/stdafx.cpp -------------------------------------------------------------------------------- /xhUpdater/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/stdafx.h -------------------------------------------------------------------------------- /xhUpdater/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/targetver.h -------------------------------------------------------------------------------- /xhUpdater/xhUpdater.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/xhUpdater.aps -------------------------------------------------------------------------------- /xhUpdater/xhUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/xhUpdater.cpp -------------------------------------------------------------------------------- /xhUpdater/xhUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/xhUpdater.h -------------------------------------------------------------------------------- /xhUpdater/xhUpdater.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/xhUpdater.rc -------------------------------------------------------------------------------- /xhUpdater/xhUpdater.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/xhUpdater.vcproj -------------------------------------------------------------------------------- /xhUpdater/xhUpdater.vcproj.GERGUL-PC.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/xhUpdater.vcproj.GERGUL-PC.Administrator.user -------------------------------------------------------------------------------- /xhUpdater/xhUpdater.vcproj.LS-IT-07221.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/xhUpdater.vcproj.LS-IT-07221.Administrator.user -------------------------------------------------------------------------------- /xhUpdater/xhUpdaterDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/xhUpdaterDlg.cpp -------------------------------------------------------------------------------- /xhUpdater/xhUpdaterDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhUpdater/xhUpdaterDlg.h -------------------------------------------------------------------------------- /xhiTunes/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/Debug/BuildLog.htm -------------------------------------------------------------------------------- /xhiTunes/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/ReadMe.txt -------------------------------------------------------------------------------- /xhiTunes/Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/Release/BuildLog.htm -------------------------------------------------------------------------------- /xhiTunes/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/base64.c -------------------------------------------------------------------------------- /xhiTunes/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/base64.h -------------------------------------------------------------------------------- /xhiTunes/cryptAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/cryptAlgorithm.h -------------------------------------------------------------------------------- /xhiTunes/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/dllmain.cpp -------------------------------------------------------------------------------- /xhiTunes/encryptAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/encryptAlgorithm.cpp -------------------------------------------------------------------------------- /xhiTunes/enterpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/enterpoint.cpp -------------------------------------------------------------------------------- /xhiTunes/enterpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/enterpoint.h -------------------------------------------------------------------------------- /xhiTunes/gsaservices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/gsaservices.cpp -------------------------------------------------------------------------------- /xhiTunes/gsaservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/gsaservices.h -------------------------------------------------------------------------------- /xhiTunes/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/hook.cpp -------------------------------------------------------------------------------- /xhiTunes/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/hook.h -------------------------------------------------------------------------------- /xhiTunes/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/stdafx.cpp -------------------------------------------------------------------------------- /xhiTunes/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/stdafx.h -------------------------------------------------------------------------------- /xhiTunes/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/targetver.h -------------------------------------------------------------------------------- /xhiTunes/xhiTunes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/xhiTunes.cpp -------------------------------------------------------------------------------- /xhiTunes/xhiTunes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/xhiTunes.h -------------------------------------------------------------------------------- /xhiTunes/xhiTunes.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/xhiTunes.vcproj -------------------------------------------------------------------------------- /xhiTunes/xhiTunes.vcproj.GERGUL-PC.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/xhiTunes.vcproj.GERGUL-PC.Administrator.user -------------------------------------------------------------------------------- /xhiTunes/xhiTunes.vcproj.LS-IT-07221.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhiTunes/xhiTunes.vcproj.LS-IT-07221.Administrator.user -------------------------------------------------------------------------------- /xhwork/CaptchaPageInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/CaptchaPageInfo.cpp -------------------------------------------------------------------------------- /xhwork/CaptchaPageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/CaptchaPageInfo.h -------------------------------------------------------------------------------- /xhwork/CxhLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/CxhLog.cpp -------------------------------------------------------------------------------- /xhwork/CxhLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/CxhLog.h -------------------------------------------------------------------------------- /xhwork/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Debug/BuildLog.htm -------------------------------------------------------------------------------- /xhwork/GZipHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/GZipHelper.h -------------------------------------------------------------------------------- /xhwork/GifProcesser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/GifProcesser.cpp -------------------------------------------------------------------------------- /xhwork/GifProcesser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/GifProcesser.h -------------------------------------------------------------------------------- /xhwork/HttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/HttpRequest.cpp -------------------------------------------------------------------------------- /xhwork/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/HttpRequest.h -------------------------------------------------------------------------------- /xhwork/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/ReadMe.txt -------------------------------------------------------------------------------- /xhwork/Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Release/BuildLog.htm -------------------------------------------------------------------------------- /xhwork/Sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Sha1.c -------------------------------------------------------------------------------- /xhwork/Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Sha1.h -------------------------------------------------------------------------------- /xhwork/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Util.cpp -------------------------------------------------------------------------------- /xhwork/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Util.h -------------------------------------------------------------------------------- /xhwork/ZLIB.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/ZLIB.LIB -------------------------------------------------------------------------------- /xhwork/Zip/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/adler32.c -------------------------------------------------------------------------------- /xhwork/Zip/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/compress.c -------------------------------------------------------------------------------- /xhwork/Zip/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/crc32.c -------------------------------------------------------------------------------- /xhwork/Zip/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/deflate.c -------------------------------------------------------------------------------- /xhwork/Zip/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/deflate.h -------------------------------------------------------------------------------- /xhwork/Zip/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/gzio.c -------------------------------------------------------------------------------- /xhwork/Zip/infblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/infblock.c -------------------------------------------------------------------------------- /xhwork/Zip/infblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/infblock.h -------------------------------------------------------------------------------- /xhwork/Zip/infcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/infcodes.c -------------------------------------------------------------------------------- /xhwork/Zip/infcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/infcodes.h -------------------------------------------------------------------------------- /xhwork/Zip/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/inffast.c -------------------------------------------------------------------------------- /xhwork/Zip/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/inffast.h -------------------------------------------------------------------------------- /xhwork/Zip/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/inffixed.h -------------------------------------------------------------------------------- /xhwork/Zip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/inflate.c -------------------------------------------------------------------------------- /xhwork/Zip/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/inftrees.c -------------------------------------------------------------------------------- /xhwork/Zip/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/inftrees.h -------------------------------------------------------------------------------- /xhwork/Zip/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/infutil.c -------------------------------------------------------------------------------- /xhwork/Zip/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/infutil.h -------------------------------------------------------------------------------- /xhwork/Zip/maketree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/maketree.c -------------------------------------------------------------------------------- /xhwork/Zip/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/trees.c -------------------------------------------------------------------------------- /xhwork/Zip/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/trees.h -------------------------------------------------------------------------------- /xhwork/Zip/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/uncompr.c -------------------------------------------------------------------------------- /xhwork/Zip/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/zconf.h -------------------------------------------------------------------------------- /xhwork/Zip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/zlib.h -------------------------------------------------------------------------------- /xhwork/Zip/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/zutil.c -------------------------------------------------------------------------------- /xhwork/Zip/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/Zip/zutil.h -------------------------------------------------------------------------------- /xhwork/accountInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/accountInfo.h -------------------------------------------------------------------------------- /xhwork/comment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/comment.cpp -------------------------------------------------------------------------------- /xhwork/comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/comment.h -------------------------------------------------------------------------------- /xhwork/cryptAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/cryptAlgorithm.h -------------------------------------------------------------------------------- /xhwork/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/curl/curl.h -------------------------------------------------------------------------------- /xhwork/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/curl/curlbuild.h -------------------------------------------------------------------------------- /xhwork/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/curl/curlrules.h -------------------------------------------------------------------------------- /xhwork/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/curl/curlver.h -------------------------------------------------------------------------------- /xhwork/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/curl/easy.h -------------------------------------------------------------------------------- /xhwork/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/curl/mprintf.h -------------------------------------------------------------------------------- /xhwork/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/curl/multi.h -------------------------------------------------------------------------------- /xhwork/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/curl/stdcheaders.h -------------------------------------------------------------------------------- /xhwork/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /xhwork/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/dllmain.cpp -------------------------------------------------------------------------------- /xhwork/encryptAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/encryptAlgorithm.cpp -------------------------------------------------------------------------------- /xhwork/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/gzip.h -------------------------------------------------------------------------------- /xhwork/json/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/allocator.h -------------------------------------------------------------------------------- /xhwork/json/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/assertions.h -------------------------------------------------------------------------------- /xhwork/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/autolink.h -------------------------------------------------------------------------------- /xhwork/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/config.h -------------------------------------------------------------------------------- /xhwork/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/features.h -------------------------------------------------------------------------------- /xhwork/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/forwards.h -------------------------------------------------------------------------------- /xhwork/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/json.h -------------------------------------------------------------------------------- /xhwork/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/reader.h -------------------------------------------------------------------------------- /xhwork/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/value.h -------------------------------------------------------------------------------- /xhwork/json/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/version.h -------------------------------------------------------------------------------- /xhwork/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json/writer.h -------------------------------------------------------------------------------- /xhwork/json_batchallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json_batchallocator.h -------------------------------------------------------------------------------- /xhwork/json_internalarray.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json_internalarray.inl -------------------------------------------------------------------------------- /xhwork/json_internalmap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json_internalmap.inl -------------------------------------------------------------------------------- /xhwork/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json_reader.cpp -------------------------------------------------------------------------------- /xhwork/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json_value.cpp -------------------------------------------------------------------------------- /xhwork/json_valueiterator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json_valueiterator.inl -------------------------------------------------------------------------------- /xhwork/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/json_writer.cpp -------------------------------------------------------------------------------- /xhwork/jsonlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/jsonlib.lib -------------------------------------------------------------------------------- /xhwork/lib_json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/lib_json/CMakeLists.txt -------------------------------------------------------------------------------- /xhwork/lib_json/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/lib_json/json_reader.cpp -------------------------------------------------------------------------------- /xhwork/lib_json/json_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/lib_json/json_tool.h -------------------------------------------------------------------------------- /xhwork/lib_json/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/lib_json/json_value.cpp -------------------------------------------------------------------------------- /xhwork/lib_json/json_valueiterator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/lib_json/json_valueiterator.inl -------------------------------------------------------------------------------- /xhwork/lib_json/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/lib_json/json_writer.cpp -------------------------------------------------------------------------------- /xhwork/lib_json/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/lib_json/sconscript -------------------------------------------------------------------------------- /xhwork/lib_json/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/lib_json/version.h.in -------------------------------------------------------------------------------- /xhwork/libcurl_imp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/libcurl_imp.lib -------------------------------------------------------------------------------- /xhwork/libcurld_imp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/libcurld_imp.lib -------------------------------------------------------------------------------- /xhwork/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/md5.cpp -------------------------------------------------------------------------------- /xhwork/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/md5.h -------------------------------------------------------------------------------- /xhwork/mem_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/mem_lock.cpp -------------------------------------------------------------------------------- /xhwork/mem_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/mem_lock.h -------------------------------------------------------------------------------- /xhwork/registerAppleId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/registerAppleId.cpp -------------------------------------------------------------------------------- /xhwork/registerAppleId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/registerAppleId.h -------------------------------------------------------------------------------- /xhwork/secdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/secdata.h -------------------------------------------------------------------------------- /xhwork/seitunes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/seitunes.cpp -------------------------------------------------------------------------------- /xhwork/seitunes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/seitunes.h -------------------------------------------------------------------------------- /xhwork/splookupoffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/splookupoffer.cpp -------------------------------------------------------------------------------- /xhwork/splookupoffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/splookupoffer.h -------------------------------------------------------------------------------- /xhwork/statusData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/statusData.h -------------------------------------------------------------------------------- /xhwork/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/stdafx.cpp -------------------------------------------------------------------------------- /xhwork/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/stdafx.h -------------------------------------------------------------------------------- /xhwork/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/targetver.h -------------------------------------------------------------------------------- /xhwork/urlcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/urlcode.cpp -------------------------------------------------------------------------------- /xhwork/urlcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/urlcode.h -------------------------------------------------------------------------------- /xhwork/viewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/viewpage.cpp -------------------------------------------------------------------------------- /xhwork/viewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/viewpage.h -------------------------------------------------------------------------------- /xhwork/xhwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/xhwork.cpp -------------------------------------------------------------------------------- /xhwork/xhwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/xhwork.h -------------------------------------------------------------------------------- /xhwork/xhwork.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/xhwork.vcproj -------------------------------------------------------------------------------- /xhwork/xhwork.vcproj.GERGUL-PC.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/xhwork.vcproj.GERGUL-PC.Administrator.user -------------------------------------------------------------------------------- /xhwork/xhwork.vcproj.LS-IT-07221.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/xhwork.vcproj.LS-IT-07221.Administrator.user -------------------------------------------------------------------------------- /xhwork/xhwork.vcproj.XIAOHE.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mensong/xhASOios/HEAD/xhwork/xhwork.vcproj.XIAOHE.Administrator.user --------------------------------------------------------------------------------