├── .gitignore ├── Main.cpp ├── README.md ├── VIFTools.cpp ├── VIFTools.hpp ├── VMPImportFixer.cpp ├── VMPImportFixer.hpp ├── VMPImportFixer.sln ├── VMPImportFixer.vcxproj ├── VMPImportFixer.vcxproj.filters ├── msc ├── Process.cpp ├── Process.hpp └── ScopedHandle.hpp └── vendor ├── pepp ├── ExportDirectory.cpp ├── ExportDirectory.hpp ├── FileHeader.hpp ├── Image.cpp ├── Image.hpp ├── ImportDirectory.cpp ├── ImportDirectory.hpp ├── OptionalHeader.cpp ├── OptionalHeader.hpp ├── PEHeader.cpp ├── PEHeader.hpp ├── PELibrary.hpp ├── PEUtil.cpp ├── PEUtil.hpp ├── RelocationDirectory.cpp ├── RelocationDirectory.hpp ├── SectionHeader.cpp ├── SectionHeader.hpp └── misc │ ├── Address.hpp │ ├── ByteVector.hpp │ ├── Concept.hpp │ ├── File.cpp │ ├── File.hpp │ └── NonCopyable.hpp ├── spdlog ├── include │ └── spdlog │ │ ├── async.h │ │ ├── async_logger-inl.h │ │ ├── async_logger.h │ │ ├── cfg │ │ ├── argv.h │ │ ├── env.h │ │ ├── helpers-inl.h │ │ └── helpers.h │ │ ├── common-inl.h │ │ ├── common.h │ │ ├── details │ │ ├── backtracer-inl.h │ │ ├── backtracer.h │ │ ├── circular_q.h │ │ ├── console_globals.h │ │ ├── file_helper-inl.h │ │ ├── file_helper.h │ │ ├── fmt_helper.h │ │ ├── log_msg-inl.h │ │ ├── log_msg.h │ │ ├── log_msg_buffer-inl.h │ │ ├── log_msg_buffer.h │ │ ├── mpmc_blocking_q.h │ │ ├── null_mutex.h │ │ ├── os-inl.h │ │ ├── os.h │ │ ├── periodic_worker-inl.h │ │ ├── periodic_worker.h │ │ ├── registry-inl.h │ │ ├── registry.h │ │ ├── synchronous_factory.h │ │ ├── tcp_client-windows.h │ │ ├── tcp_client.h │ │ ├── thread_pool-inl.h │ │ ├── thread_pool.h │ │ └── windows_include.h │ │ ├── fmt │ │ ├── bin_to_hex.h │ │ ├── bundled │ │ │ ├── args.h │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── locale.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ └── xchar.h │ │ ├── chrono.h │ │ ├── fmt.h │ │ ├── ostr.h │ │ └── xchar.h │ │ ├── formatter.h │ │ ├── fwd.h │ │ ├── logger-inl.h │ │ ├── logger.h │ │ ├── pattern_formatter-inl.h │ │ ├── pattern_formatter.h │ │ ├── sinks │ │ ├── android_sink.h │ │ ├── ansicolor_sink-inl.h │ │ ├── ansicolor_sink.h │ │ ├── base_sink-inl.h │ │ ├── base_sink.h │ │ ├── basic_file_sink-inl.h │ │ ├── basic_file_sink.h │ │ ├── daily_file_sink.h │ │ ├── dist_sink.h │ │ ├── dup_filter_sink.h │ │ ├── hourly_file_sink.h │ │ ├── mongo_sink.h │ │ ├── msvc_sink.h │ │ ├── null_sink.h │ │ ├── ostream_sink.h │ │ ├── ringbuffer_sink.h │ │ ├── rotating_file_sink-inl.h │ │ ├── rotating_file_sink.h │ │ ├── sink-inl.h │ │ ├── sink.h │ │ ├── stdout_color_sinks-inl.h │ │ ├── stdout_color_sinks.h │ │ ├── stdout_sinks-inl.h │ │ ├── stdout_sinks.h │ │ ├── syslog_sink.h │ │ ├── systemd_sink.h │ │ ├── tcp_sink.h │ │ ├── win_eventlog_sink.h │ │ ├── wincolor_sink-inl.h │ │ └── wincolor_sink.h │ │ ├── spdlog-inl.h │ │ ├── spdlog.h │ │ ├── stopwatch.h │ │ ├── tweakme.h │ │ └── version.h └── src │ ├── async.cpp │ ├── cfg.cpp │ ├── color_sinks.cpp │ ├── file_sinks.cpp │ ├── fmt.cpp │ ├── spdlog.cpp │ └── stdout_sinks.cpp ├── unicorn ├── include │ ├── list.h │ ├── qemu.h │ ├── uc_priv.h │ └── unicorn │ │ ├── arm.h │ │ ├── arm64.h │ │ ├── m68k.h │ │ ├── mips.h │ │ ├── platform.h │ │ ├── sparc.h │ │ ├── unicorn.h │ │ └── x86.h └── lib │ └── x64 │ └── unicorn_static.lib ├── zycore ├── include │ ├── Zycore │ │ ├── API │ │ │ ├── Memory.h │ │ │ ├── Process.h │ │ │ ├── Synchronization.h │ │ │ ├── Terminal.h │ │ │ └── Thread.h │ │ ├── Allocator.h │ │ ├── ArgParse.h │ │ ├── Bitset.h │ │ ├── Comparison.h │ │ ├── Defines.h │ │ ├── Format.h │ │ ├── LibC.h │ │ ├── List.h │ │ ├── Object.h │ │ ├── Status.h │ │ ├── String.h │ │ ├── Types.h │ │ ├── Vector.h │ │ ├── Zycore.h │ │ └── ZycoreExportConfig.h │ └── ZycoreExportConfig.h └── src │ ├── API │ ├── Memory.c │ ├── Process.c │ ├── Synchronization.c │ ├── Terminal.c │ └── Thread.c │ ├── Allocator.c │ ├── ArgParse.c │ ├── Bitset.c │ ├── Format.c │ ├── List.c │ ├── String.c │ ├── Vector.c │ └── Zycore.c └── zydis ├── include ├── Zydis │ ├── Decoder.h │ ├── DecoderTypes.h │ ├── Formatter.h │ ├── FormatterBuffer.h │ ├── Generated │ │ ├── EnumISAExt.h │ │ ├── EnumISASet.h │ │ ├── EnumInstructionCategory.h │ │ ├── EnumMnemonic.h │ │ └── EnumRegister.h │ ├── Internal │ │ ├── DecoderData.h │ │ ├── FormatterATT.h │ │ ├── FormatterBase.h │ │ ├── FormatterIntel.h │ │ ├── SharedData.h │ │ └── String.h │ ├── MetaInfo.h │ ├── Mnemonic.h │ ├── Register.h │ ├── SharedTypes.h │ ├── ShortString.h │ ├── Status.h │ ├── Utils.h │ └── Zydis.h └── ZydisExportConfig.h ├── lib ├── ReleaseX64 │ ├── Zycore.lib │ └── Zydis.lib └── ReleaseX86 │ ├── Zycore.lib │ └── Zydis.lib └── src ├── Decoder.c ├── DecoderData.c ├── Formatter.c ├── FormatterATT.c ├── FormatterBase.c ├── FormatterBuffer.c ├── FormatterIntel.c ├── Generated ├── AccessedFlags.inc ├── DecoderTables.inc ├── EncodableInstructions.inc ├── EnumISAExt.inc ├── EnumISASet.inc ├── EnumInstructionCategory.inc ├── EnumMnemonic.inc ├── EnumRegister.inc ├── FormatterStrings.inc ├── InstructionDefinitions.inc ├── InstructionEncodings.inc └── OperandDefinitions.inc ├── MetaInfo.c ├── Mnemonic.c ├── Register.c ├── SharedData.c ├── String.c ├── Utils.c └── Zydis.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/.gitignore -------------------------------------------------------------------------------- /Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/Main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/README.md -------------------------------------------------------------------------------- /VIFTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/VIFTools.cpp -------------------------------------------------------------------------------- /VIFTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/VIFTools.hpp -------------------------------------------------------------------------------- /VMPImportFixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/VMPImportFixer.cpp -------------------------------------------------------------------------------- /VMPImportFixer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/VMPImportFixer.hpp -------------------------------------------------------------------------------- /VMPImportFixer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/VMPImportFixer.sln -------------------------------------------------------------------------------- /VMPImportFixer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/VMPImportFixer.vcxproj -------------------------------------------------------------------------------- /VMPImportFixer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/VMPImportFixer.vcxproj.filters -------------------------------------------------------------------------------- /msc/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/msc/Process.cpp -------------------------------------------------------------------------------- /msc/Process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/msc/Process.hpp -------------------------------------------------------------------------------- /msc/ScopedHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/msc/ScopedHandle.hpp -------------------------------------------------------------------------------- /vendor/pepp/ExportDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/ExportDirectory.cpp -------------------------------------------------------------------------------- /vendor/pepp/ExportDirectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/ExportDirectory.hpp -------------------------------------------------------------------------------- /vendor/pepp/FileHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/FileHeader.hpp -------------------------------------------------------------------------------- /vendor/pepp/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/Image.cpp -------------------------------------------------------------------------------- /vendor/pepp/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/Image.hpp -------------------------------------------------------------------------------- /vendor/pepp/ImportDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/ImportDirectory.cpp -------------------------------------------------------------------------------- /vendor/pepp/ImportDirectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/ImportDirectory.hpp -------------------------------------------------------------------------------- /vendor/pepp/OptionalHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/OptionalHeader.cpp -------------------------------------------------------------------------------- /vendor/pepp/OptionalHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/OptionalHeader.hpp -------------------------------------------------------------------------------- /vendor/pepp/PEHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/PEHeader.cpp -------------------------------------------------------------------------------- /vendor/pepp/PEHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/PEHeader.hpp -------------------------------------------------------------------------------- /vendor/pepp/PELibrary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/PELibrary.hpp -------------------------------------------------------------------------------- /vendor/pepp/PEUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/PEUtil.cpp -------------------------------------------------------------------------------- /vendor/pepp/PEUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/PEUtil.hpp -------------------------------------------------------------------------------- /vendor/pepp/RelocationDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/RelocationDirectory.cpp -------------------------------------------------------------------------------- /vendor/pepp/RelocationDirectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/RelocationDirectory.hpp -------------------------------------------------------------------------------- /vendor/pepp/SectionHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/SectionHeader.cpp -------------------------------------------------------------------------------- /vendor/pepp/SectionHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/SectionHeader.hpp -------------------------------------------------------------------------------- /vendor/pepp/misc/Address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/misc/Address.hpp -------------------------------------------------------------------------------- /vendor/pepp/misc/ByteVector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/misc/ByteVector.hpp -------------------------------------------------------------------------------- /vendor/pepp/misc/Concept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/misc/Concept.hpp -------------------------------------------------------------------------------- /vendor/pepp/misc/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/misc/File.cpp -------------------------------------------------------------------------------- /vendor/pepp/misc/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/misc/File.hpp -------------------------------------------------------------------------------- /vendor/pepp/misc/NonCopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/pepp/misc/NonCopyable.hpp -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/async.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/async_logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/async_logger-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/async_logger.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/cfg/argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/cfg/argv.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/cfg/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/cfg/env.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/cfg/helpers-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/cfg/helpers-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/cfg/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/cfg/helpers.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/common-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/common-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/common.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/backtracer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/backtracer-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/backtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/backtracer.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/file_helper-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/file_helper-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/log_msg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/log_msg-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/log_msg_buffer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/log_msg_buffer-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/log_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/log_msg_buffer.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/os-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/os-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/os.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/periodic_worker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/periodic_worker-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/registry-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/registry-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/registry.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/synchronous_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/synchronous_factory.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/tcp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/tcp_client-windows.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/tcp_client.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/thread_pool-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/thread_pool-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/details/windows_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/details/windows_include.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/args.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/compile.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/locale.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/os.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/bundled/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/bundled/xchar.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/chrono.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fmt/xchar.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/formatter.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/fwd.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/logger-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/logger.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/pattern_formatter-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/pattern_formatter-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/pattern_formatter.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/base_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/base_sink-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/basic_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/basic_file_sink-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/dup_filter_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/dup_filter_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/hourly_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/hourly_file_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/mongo_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/mongo_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/ringbuffer_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/ringbuffer_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/sink-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/stdout_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/stdout_sinks-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/systemd_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/systemd_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/tcp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/tcp_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/win_eventlog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/win_eventlog_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/wincolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/wincolor_sink-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/spdlog-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/spdlog-inl.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/spdlog.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/stopwatch.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/tweakme.h -------------------------------------------------------------------------------- /vendor/spdlog/include/spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/include/spdlog/version.h -------------------------------------------------------------------------------- /vendor/spdlog/src/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/src/async.cpp -------------------------------------------------------------------------------- /vendor/spdlog/src/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/src/cfg.cpp -------------------------------------------------------------------------------- /vendor/spdlog/src/color_sinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/src/color_sinks.cpp -------------------------------------------------------------------------------- /vendor/spdlog/src/file_sinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/src/file_sinks.cpp -------------------------------------------------------------------------------- /vendor/spdlog/src/fmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/src/fmt.cpp -------------------------------------------------------------------------------- /vendor/spdlog/src/spdlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/src/spdlog.cpp -------------------------------------------------------------------------------- /vendor/spdlog/src/stdout_sinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/spdlog/src/stdout_sinks.cpp -------------------------------------------------------------------------------- /vendor/unicorn/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/list.h -------------------------------------------------------------------------------- /vendor/unicorn/include/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/qemu.h -------------------------------------------------------------------------------- /vendor/unicorn/include/uc_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/uc_priv.h -------------------------------------------------------------------------------- /vendor/unicorn/include/unicorn/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/unicorn/arm.h -------------------------------------------------------------------------------- /vendor/unicorn/include/unicorn/arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/unicorn/arm64.h -------------------------------------------------------------------------------- /vendor/unicorn/include/unicorn/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/unicorn/m68k.h -------------------------------------------------------------------------------- /vendor/unicorn/include/unicorn/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/unicorn/mips.h -------------------------------------------------------------------------------- /vendor/unicorn/include/unicorn/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/unicorn/platform.h -------------------------------------------------------------------------------- /vendor/unicorn/include/unicorn/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/unicorn/sparc.h -------------------------------------------------------------------------------- /vendor/unicorn/include/unicorn/unicorn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/unicorn/unicorn.h -------------------------------------------------------------------------------- /vendor/unicorn/include/unicorn/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/include/unicorn/x86.h -------------------------------------------------------------------------------- /vendor/unicorn/lib/x64/unicorn_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/unicorn/lib/x64/unicorn_static.lib -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/API/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/API/Memory.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/API/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/API/Process.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/API/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/API/Synchronization.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/API/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/API/Terminal.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/API/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/API/Thread.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/Allocator.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/ArgParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/ArgParse.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/Bitset.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/Comparison.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/Defines.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/Format.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/LibC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/LibC.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/List.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/Object.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/Status.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/String.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/Types.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/Vector.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/Zycore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/Zycore.h -------------------------------------------------------------------------------- /vendor/zycore/include/Zycore/ZycoreExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/Zycore/ZycoreExportConfig.h -------------------------------------------------------------------------------- /vendor/zycore/include/ZycoreExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/include/ZycoreExportConfig.h -------------------------------------------------------------------------------- /vendor/zycore/src/API/Memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/API/Memory.c -------------------------------------------------------------------------------- /vendor/zycore/src/API/Process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/API/Process.c -------------------------------------------------------------------------------- /vendor/zycore/src/API/Synchronization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/API/Synchronization.c -------------------------------------------------------------------------------- /vendor/zycore/src/API/Terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/API/Terminal.c -------------------------------------------------------------------------------- /vendor/zycore/src/API/Thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/API/Thread.c -------------------------------------------------------------------------------- /vendor/zycore/src/Allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/Allocator.c -------------------------------------------------------------------------------- /vendor/zycore/src/ArgParse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/ArgParse.c -------------------------------------------------------------------------------- /vendor/zycore/src/Bitset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/Bitset.c -------------------------------------------------------------------------------- /vendor/zycore/src/Format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/Format.c -------------------------------------------------------------------------------- /vendor/zycore/src/List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/List.c -------------------------------------------------------------------------------- /vendor/zycore/src/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/String.c -------------------------------------------------------------------------------- /vendor/zycore/src/Vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/Vector.c -------------------------------------------------------------------------------- /vendor/zycore/src/Zycore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zycore/src/Zycore.c -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Decoder.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/DecoderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/DecoderTypes.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Formatter.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/FormatterBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/FormatterBuffer.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Generated/EnumISAExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Generated/EnumISAExt.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Generated/EnumISASet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Generated/EnumISASet.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Generated/EnumInstructionCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Generated/EnumInstructionCategory.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Generated/EnumMnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Generated/EnumMnemonic.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Generated/EnumRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Generated/EnumRegister.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Internal/DecoderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Internal/DecoderData.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Internal/FormatterATT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Internal/FormatterATT.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Internal/FormatterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Internal/FormatterBase.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Internal/FormatterIntel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Internal/FormatterIntel.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Internal/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Internal/SharedData.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Internal/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Internal/String.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/MetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/MetaInfo.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Mnemonic.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Register.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/SharedTypes.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/ShortString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/ShortString.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Status.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Utils.h -------------------------------------------------------------------------------- /vendor/zydis/include/Zydis/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/Zydis/Zydis.h -------------------------------------------------------------------------------- /vendor/zydis/include/ZydisExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/include/ZydisExportConfig.h -------------------------------------------------------------------------------- /vendor/zydis/lib/ReleaseX64/Zycore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/lib/ReleaseX64/Zycore.lib -------------------------------------------------------------------------------- /vendor/zydis/lib/ReleaseX64/Zydis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/lib/ReleaseX64/Zydis.lib -------------------------------------------------------------------------------- /vendor/zydis/lib/ReleaseX86/Zycore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/lib/ReleaseX86/Zycore.lib -------------------------------------------------------------------------------- /vendor/zydis/lib/ReleaseX86/Zydis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/lib/ReleaseX86/Zydis.lib -------------------------------------------------------------------------------- /vendor/zydis/src/Decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Decoder.c -------------------------------------------------------------------------------- /vendor/zydis/src/DecoderData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/DecoderData.c -------------------------------------------------------------------------------- /vendor/zydis/src/Formatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Formatter.c -------------------------------------------------------------------------------- /vendor/zydis/src/FormatterATT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/FormatterATT.c -------------------------------------------------------------------------------- /vendor/zydis/src/FormatterBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/FormatterBase.c -------------------------------------------------------------------------------- /vendor/zydis/src/FormatterBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/FormatterBuffer.c -------------------------------------------------------------------------------- /vendor/zydis/src/FormatterIntel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/FormatterIntel.c -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/AccessedFlags.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/AccessedFlags.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/DecoderTables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/DecoderTables.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/EncodableInstructions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/EncodableInstructions.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/EnumISAExt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/EnumISAExt.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/EnumISASet.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/EnumISASet.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/EnumInstructionCategory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/EnumInstructionCategory.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/EnumMnemonic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/EnumMnemonic.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/EnumRegister.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/EnumRegister.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/FormatterStrings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/FormatterStrings.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/InstructionDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/InstructionDefinitions.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/InstructionEncodings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/InstructionEncodings.inc -------------------------------------------------------------------------------- /vendor/zydis/src/Generated/OperandDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Generated/OperandDefinitions.inc -------------------------------------------------------------------------------- /vendor/zydis/src/MetaInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/MetaInfo.c -------------------------------------------------------------------------------- /vendor/zydis/src/Mnemonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Mnemonic.c -------------------------------------------------------------------------------- /vendor/zydis/src/Register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Register.c -------------------------------------------------------------------------------- /vendor/zydis/src/SharedData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/SharedData.c -------------------------------------------------------------------------------- /vendor/zydis/src/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/String.c -------------------------------------------------------------------------------- /vendor/zydis/src/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Utils.c -------------------------------------------------------------------------------- /vendor/zydis/src/Zydis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1k/VMPImportFixer/HEAD/vendor/zydis/src/Zydis.c --------------------------------------------------------------------------------