MCPcopy Create free account
hub / github.com/NtQuery/Scylla / getModuleXmlElement

Method getModuleXmlElement

Scylla/TreeImportExport.cpp:120–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118}
119
120TiXmlElement * TreeImportExport::getModuleXmlElement(const ImportModuleThunk * importModuleThunk)
121{
122 TiXmlElement * moduleElement = new TiXmlElement("module");
123
124 StringConversion::ToASCII(importModuleThunk->moduleName, xmlStringBuffer, _countof(xmlStringBuffer));
125 moduleElement->SetAttribute("filename", xmlStringBuffer);
126
127 ConvertDwordPtrToString(importModuleThunk->getFirstThunk());
128 moduleElement->SetAttribute("first_thunk_rva", xmlStringBuffer);
129
130 return moduleElement;
131}
132
133TiXmlElement * TreeImportExport::getImportXmlElement(const ImportThunk * importThunk)
134{

Callers

nothing calls this directly

Calls 1

getFirstThunkMethod · 0.80

Tested by

no test coverage detected