├── .gitignore ├── AntiRecall.sln ├── AntiRecall ├── AntiRecall.csproj ├── AntiRecall.snk ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── Resources │ └── main-blue.ico ├── ToggleButtonStyle.xaml ├── deploy │ ├── ReplaceQQStartup.cs │ ├── ResumeQQStartup.cs │ ├── ShortCut.cs │ ├── Strings.cs │ └── Xml.cs ├── library │ ├── Telerik.Windows.Controls.Data.dll │ ├── Telerik.Windows.Controls.DataVisualization.dll │ ├── Telerik.Windows.Controls.dll │ └── Telerik.Windows.Themes.Material.dll ├── main-blue.ico ├── network │ └── CheckUpdate.cs └── patch │ └── patch_memory.cs ├── LICENSE ├── README-zh.md ├── README.md ├── TelegramHelper ├── Header.h ├── QtString.cpp ├── QtString.h ├── TelegramHelper.vcxproj ├── TelegramHelper.vcxproj.filters ├── dllmain.cpp ├── framework.h ├── functions.h ├── global.h ├── hook.cpp ├── logger.cpp ├── logger.h ├── myFunc.cpp ├── myFunc.h ├── pch.cpp ├── pch.h ├── seeker.cpp ├── worker.cpp └── worker.h └── resource ├── how_to_use.gif ├── qq.gif ├── telegram.gif └── wechat.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/.gitignore -------------------------------------------------------------------------------- /AntiRecall.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall.sln -------------------------------------------------------------------------------- /AntiRecall/AntiRecall.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/AntiRecall.csproj -------------------------------------------------------------------------------- /AntiRecall/AntiRecall.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/AntiRecall.snk -------------------------------------------------------------------------------- /AntiRecall/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/App.config -------------------------------------------------------------------------------- /AntiRecall/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/App.xaml -------------------------------------------------------------------------------- /AntiRecall/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/App.xaml.cs -------------------------------------------------------------------------------- /AntiRecall/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/MainWindow.xaml -------------------------------------------------------------------------------- /AntiRecall/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/MainWindow.xaml.cs -------------------------------------------------------------------------------- /AntiRecall/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AntiRecall/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AntiRecall/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/Properties/Resources.resx -------------------------------------------------------------------------------- /AntiRecall/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AntiRecall/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/Properties/Settings.settings -------------------------------------------------------------------------------- /AntiRecall/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/Properties/app.manifest -------------------------------------------------------------------------------- /AntiRecall/Resources/main-blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/Resources/main-blue.ico -------------------------------------------------------------------------------- /AntiRecall/ToggleButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/ToggleButtonStyle.xaml -------------------------------------------------------------------------------- /AntiRecall/deploy/ReplaceQQStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/deploy/ReplaceQQStartup.cs -------------------------------------------------------------------------------- /AntiRecall/deploy/ResumeQQStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/deploy/ResumeQQStartup.cs -------------------------------------------------------------------------------- /AntiRecall/deploy/ShortCut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/deploy/ShortCut.cs -------------------------------------------------------------------------------- /AntiRecall/deploy/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/deploy/Strings.cs -------------------------------------------------------------------------------- /AntiRecall/deploy/Xml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/deploy/Xml.cs -------------------------------------------------------------------------------- /AntiRecall/library/Telerik.Windows.Controls.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/library/Telerik.Windows.Controls.Data.dll -------------------------------------------------------------------------------- /AntiRecall/library/Telerik.Windows.Controls.DataVisualization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/library/Telerik.Windows.Controls.DataVisualization.dll -------------------------------------------------------------------------------- /AntiRecall/library/Telerik.Windows.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/library/Telerik.Windows.Controls.dll -------------------------------------------------------------------------------- /AntiRecall/library/Telerik.Windows.Themes.Material.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/library/Telerik.Windows.Themes.Material.dll -------------------------------------------------------------------------------- /AntiRecall/main-blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/main-blue.ico -------------------------------------------------------------------------------- /AntiRecall/network/CheckUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/network/CheckUpdate.cs -------------------------------------------------------------------------------- /AntiRecall/patch/patch_memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/AntiRecall/patch/patch_memory.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/README.md -------------------------------------------------------------------------------- /TelegramHelper/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/Header.h -------------------------------------------------------------------------------- /TelegramHelper/QtString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/QtString.cpp -------------------------------------------------------------------------------- /TelegramHelper/QtString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/QtString.h -------------------------------------------------------------------------------- /TelegramHelper/TelegramHelper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/TelegramHelper.vcxproj -------------------------------------------------------------------------------- /TelegramHelper/TelegramHelper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/TelegramHelper.vcxproj.filters -------------------------------------------------------------------------------- /TelegramHelper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/dllmain.cpp -------------------------------------------------------------------------------- /TelegramHelper/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/framework.h -------------------------------------------------------------------------------- /TelegramHelper/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/functions.h -------------------------------------------------------------------------------- /TelegramHelper/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/global.h -------------------------------------------------------------------------------- /TelegramHelper/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/hook.cpp -------------------------------------------------------------------------------- /TelegramHelper/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/logger.cpp -------------------------------------------------------------------------------- /TelegramHelper/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/logger.h -------------------------------------------------------------------------------- /TelegramHelper/myFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/myFunc.cpp -------------------------------------------------------------------------------- /TelegramHelper/myFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/myFunc.h -------------------------------------------------------------------------------- /TelegramHelper/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/pch.cpp -------------------------------------------------------------------------------- /TelegramHelper/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/pch.h -------------------------------------------------------------------------------- /TelegramHelper/seeker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/seeker.cpp -------------------------------------------------------------------------------- /TelegramHelper/worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/worker.cpp -------------------------------------------------------------------------------- /TelegramHelper/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/TelegramHelper/worker.h -------------------------------------------------------------------------------- /resource/how_to_use.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/resource/how_to_use.gif -------------------------------------------------------------------------------- /resource/qq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/resource/qq.gif -------------------------------------------------------------------------------- /resource/telegram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/resource/telegram.gif -------------------------------------------------------------------------------- /resource/wechat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plummm/AntiRecall/HEAD/resource/wechat.gif --------------------------------------------------------------------------------