pub unsafe extern "C" fn WasmEdge_PluginFind(
    Name: WasmEdge_String
) -> *const WasmEdge_PluginContext
Expand description

Find the loaded plug-in context by name.

After loading the plug-ins from default paths or the given path, developers can use this API to retrieve the plug-in context by name. Then developers can create the module instance from the plug-in contexts.

\param Name the plug-in name WasmEdge_String.

\returns pointer to the plug-in context. NULL if the plug-in not found.