| 293 | |
| 294 | |
| 295 | std::string GetSectionNameFromRaw(const IMAGE_SECTION_HEADER& section) { |
| 296 | return std::string(reinterpret_cast<const char*>(section.Name), |
| 297 | strnlen(reinterpret_cast<const char*>(section.Name), 8)); |
| 298 | } |
| 299 | |
| 300 | |
| 301 | std::vector<ModuleSection> EnumerateModuleSections(HANDLE hProcess, LPVOID moduleBase) { |
no test coverage detected