getPlugins method
IPluginSet
getPlugins(
- IStatus status,
- int pluginType,
- String namesList,
- IFirebirdConf firebirdConf,
Implementation
IPluginSet getPlugins(IStatus status, int pluginType, String namesList,
IFirebirdConf firebirdConf) {
final namesUtf = namesList.toNativeUtf8(allocator: mem);
try {
final res = _getPlugins(
self, status.self, pluginType, namesUtf, firebirdConf.self);
status.checkStatus();
return IPluginSet(res);
} finally {
mem.free(namesUtf);
}
}