MCPcopy Create free account
hub / github.com/Inori/GPCS4 / getExportSymbols

Method getExportSymbols

GPCS4/Emulator/Module.cpp:399–409  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

397}
398
399bool NativeModule::getExportSymbols(SymbolList *exportSymbols) const
400{
401 LOG_ASSERT(exportSymbols != nullptr, "%s", "null pointer error");
402
403 for (auto index : m_exportSymbols)
404 {
405 exportSymbols->emplace_back(m_symbols[index]);
406 }
407
408 return true;
409}
410
411bool NativeModule::getUnresolvedSymbols(SymbolList *symbolList) const
412{

Callers 1

loadModuleFromFileMethod · 0.80

Calls 1

emplace_backMethod · 0.80

Tested by

no test coverage detected