├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── Xenos.sln ├── appveyor.yml ├── make_release.bat └── src ├── Button.hpp ├── ComboBox.hpp ├── Control.hpp ├── Dialog.hpp ├── DlgModules.cpp ├── DlgModules.h ├── DlgSettings.cpp ├── DlgSettings.h ├── DlgWait.cpp ├── DlgWait.h ├── DriverExtract.h ├── DumpHandler.cpp ├── DumpHandler.h ├── EditBox.hpp ├── FileUtil.cpp ├── FileUtil.h ├── InjectionCore.cpp ├── InjectionCore.h ├── ListView.hpp ├── Log.h ├── Main.cpp ├── MainDlg.cpp ├── MainDlg.h ├── Message.hpp ├── ProfileMgr.cpp ├── ProfileMgr.h ├── Routines.cpp ├── StatusBar.hpp ├── StringUtil.h ├── Window.hpp ├── Xenos.rc ├── Xenos.vcxproj ├── Xenos.vcxproj.filters ├── alien.ico ├── rapidxml ├── license.txt ├── manual.html ├── rapidxml.hpp ├── rapidxml_iterators.hpp ├── rapidxml_print.hpp └── rapidxml_utils.hpp ├── rapidxml_wrap.hpp ├── resource.h ├── stdafx.h └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/README.md -------------------------------------------------------------------------------- /Xenos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/Xenos.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/appveyor.yml -------------------------------------------------------------------------------- /make_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/make_release.bat -------------------------------------------------------------------------------- /src/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Button.hpp -------------------------------------------------------------------------------- /src/ComboBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/ComboBox.hpp -------------------------------------------------------------------------------- /src/Control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Control.hpp -------------------------------------------------------------------------------- /src/Dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Dialog.hpp -------------------------------------------------------------------------------- /src/DlgModules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/DlgModules.cpp -------------------------------------------------------------------------------- /src/DlgModules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/DlgModules.h -------------------------------------------------------------------------------- /src/DlgSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/DlgSettings.cpp -------------------------------------------------------------------------------- /src/DlgSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/DlgSettings.h -------------------------------------------------------------------------------- /src/DlgWait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/DlgWait.cpp -------------------------------------------------------------------------------- /src/DlgWait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/DlgWait.h -------------------------------------------------------------------------------- /src/DriverExtract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/DriverExtract.h -------------------------------------------------------------------------------- /src/DumpHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/DumpHandler.cpp -------------------------------------------------------------------------------- /src/DumpHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/DumpHandler.h -------------------------------------------------------------------------------- /src/EditBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/EditBox.hpp -------------------------------------------------------------------------------- /src/FileUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/FileUtil.cpp -------------------------------------------------------------------------------- /src/FileUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/FileUtil.h -------------------------------------------------------------------------------- /src/InjectionCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/InjectionCore.cpp -------------------------------------------------------------------------------- /src/InjectionCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/InjectionCore.h -------------------------------------------------------------------------------- /src/ListView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/ListView.hpp -------------------------------------------------------------------------------- /src/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Log.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/MainDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/MainDlg.cpp -------------------------------------------------------------------------------- /src/MainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/MainDlg.h -------------------------------------------------------------------------------- /src/Message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Message.hpp -------------------------------------------------------------------------------- /src/ProfileMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/ProfileMgr.cpp -------------------------------------------------------------------------------- /src/ProfileMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/ProfileMgr.h -------------------------------------------------------------------------------- /src/Routines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Routines.cpp -------------------------------------------------------------------------------- /src/StatusBar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/StatusBar.hpp -------------------------------------------------------------------------------- /src/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/StringUtil.h -------------------------------------------------------------------------------- /src/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Window.hpp -------------------------------------------------------------------------------- /src/Xenos.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Xenos.rc -------------------------------------------------------------------------------- /src/Xenos.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Xenos.vcxproj -------------------------------------------------------------------------------- /src/Xenos.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/Xenos.vcxproj.filters -------------------------------------------------------------------------------- /src/alien.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/alien.ico -------------------------------------------------------------------------------- /src/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/rapidxml/license.txt -------------------------------------------------------------------------------- /src/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/rapidxml/manual.html -------------------------------------------------------------------------------- /src/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /src/rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /src/rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /src/rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /src/rapidxml_wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/rapidxml_wrap.hpp -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthTon/Xenos/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | --------------------------------------------------------------------------------