MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / FB_PLUGIN_ENTRY_POINT

Function FB_PLUGIN_ENTRY_POINT

examples/extauth/ExtAuth.cpp:438–447  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

436
437
438extern "C" FB_DLL_EXPORT void FB_PLUGIN_ENTRY_POINT(IMaster* m)
439{
440 master = m;
441 IPluginManager* pluginManager = master->getPluginManager();
442
443 module.registerMe(pluginManager);
444 const char* plName = "fbSampleExtAuth";
445 pluginManager->registerPluginFactory(IPluginManager::TYPE_AUTH_CLIENT, plName, &clientFactory);
446 pluginManager->registerPluginFactory(IPluginManager::TYPE_AUTH_SERVER, plName, &serverFactory);
447}

Callers

nothing calls this directly

Calls 3

getPluginManagerMethod · 0.45
registerMeMethod · 0.45
registerPluginFactoryMethod · 0.45

Tested by

no test coverage detected