| 19 | #include <sstream> |
| 20 | |
| 21 | struct module_data { |
| 22 | std::string image_name = ""; |
| 23 | std::string module_name = ""; |
| 24 | void *base_address = nullptr; |
| 25 | DWORD load_size = 0L; |
| 26 | }; |
| 27 | typedef std::vector<module_data> ModuleList; |
| 28 | |
| 29 | HANDLE thread_ready; |
nothing calls this directly
no outgoing calls
no test coverage detected