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

Function PluginsCreate

engine/dlib/src/dlib/configfile.cpp:583–592  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

581 }
582
583 static void PluginsCreate(HConfig config)
584 {
585 const ConfigFilePluginDesc* plugin = GetFirstExtension();
586 while (plugin != 0)
587 {
588 if (plugin->m_Create)
589 plugin->m_Create(config);
590 plugin = plugin->m_Next;
591 }
592 }
593
594 static void PluginsDestroy(HConfig config)
595 {

Callers 2

LoadFromBufferFunction · 0.85
LoadFunction · 0.85

Calls 1

GetFirstExtensionFunction · 0.70

Tested by

no test coverage detected