| 1324 | } |
| 1325 | |
| 1326 | IConfig* getPluginConfig(const char* pluginName) |
| 1327 | { |
| 1328 | try |
| 1329 | { |
| 1330 | // setup loadinfo |
| 1331 | PluginLoadInfo info(pluginName); |
| 1332 | return findPluginConfig(info.conf, info.plugConfigFile); |
| 1333 | } |
| 1334 | catch (const Exception&) |
| 1335 | { |
| 1336 | return NULL; |
| 1337 | } |
| 1338 | } |
| 1339 | |
| 1340 | IFirebirdConf* getFirebirdConf() |
| 1341 | { |
nothing calls this directly
no test coverage detected