gitextract_efljrolz/ ├── .clang-format ├── .clang-format-cpp ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── ac.sln ├── driver/ │ ├── apc.c │ ├── apc.h │ ├── arch.asm │ ├── callbacks.c │ ├── callbacks.h │ ├── common.h │ ├── containers/ │ │ ├── map.c │ │ ├── map.h │ │ ├── tree.c │ │ └── tree.h │ ├── cpp.hint │ ├── crypt.c │ ├── crypt.h │ ├── driver.c │ ├── driver.h │ ├── driver.inf │ ├── driver.vcxproj │ ├── driver.vcxproj.filters │ ├── hv.c │ ├── hv.h │ ├── hw.c │ ├── hw.h │ ├── ia32.h │ ├── imports.c │ ├── imports.h │ ├── integrity.c │ ├── integrity.h │ ├── io.c │ ├── io.h │ ├── lib/ │ │ ├── stdlib.c │ │ └── stdlib.h │ ├── modules.c │ ├── modules.h │ ├── pe.c │ ├── pe.h │ ├── pool.c │ ├── pool.h │ ├── session.c │ ├── session.h │ ├── thread.c │ ├── thread.h │ ├── types/ │ │ ├── tpm12.h │ │ ├── tpm20.h │ │ ├── tpmptp.h │ │ └── types.h │ ├── util.c │ └── util.h ├── module/ │ ├── client/ │ │ ├── message_queue.cpp │ │ ├── message_queue.h │ │ ├── pipe.cpp │ │ └── pipe.h │ ├── common.h │ ├── crypt/ │ │ ├── crypt.cpp │ │ └── crypt.h │ ├── dispatcher/ │ │ ├── dispatcher.cpp │ │ ├── dispatcher.h │ │ ├── threadpool.cpp │ │ ├── threadpool.h │ │ ├── timer.cpp │ │ └── timer.h │ ├── helper.cpp │ ├── helper.h │ ├── imports.cpp │ ├── imports.h │ ├── kernel_interface/ │ │ ├── kernel_interface.cpp │ │ └── kernel_interface.h │ ├── main.cpp │ ├── module.cpp │ ├── module.h │ ├── module.vcxproj │ └── module.vcxproj.filters └── server/ └── main.go