| 3561 | // https://stackoverflow.com/questions/6205981/windows-c-stack-trace-from-a-running-app/28276227#28276227 |
| 3562 | |
| 3563 | struct module_data { |
| 3564 | std::string image_name; |
| 3565 | std::string module_name; |
| 3566 | void *base_address; |
| 3567 | DWORD load_size; |
| 3568 | }; |
| 3569 | |
| 3570 | class get_mod_info { |
| 3571 | HANDLE process; |
nothing calls this directly
no outgoing calls
no test coverage detected