MCPcopy Create free account
hub / github.com/defold/defold / PluginsDestroy

Function PluginsDestroy

engine/dlib/src/dlib/configfile.cpp:594–603  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

592 }
593
594 static void PluginsDestroy(HConfig config)
595 {
596 const ConfigFilePluginDesc* plugin = GetFirstExtension();
597 while (plugin != 0)
598 {
599 if (plugin->m_Destroy)
600 plugin->m_Destroy(config);
601 plugin = plugin->m_Next;
602 }
603 }
604
605 static Result LoadFromFileInternal(const char* url, int argc, const char** argv, HConfig* config)
606 {

Callers 1

DeleteFunction · 0.85

Calls 1

GetFirstExtensionFunction · 0.70

Tested by

no test coverage detected