| 3818 | } |
| 3819 | |
| 3820 | WASMEDGE_CAPI_EXPORT void |
| 3821 | WasmEdge_PluginLoadFromPath(const char *Path) noexcept { |
| 3822 | // Not genPath(): this is noexcept and absolute() can throw. |
| 3823 | WasmEdge::Plugin::Plugin::load(std::filesystem::path(Path ? Path : "")); |
| 3824 | } |
| 3825 | |
| 3826 | WASMEDGE_CAPI_EXPORT uint32_t WasmEdge_PluginListPluginsLength(void) noexcept { |
| 3827 | return static_cast<uint32_t>(WasmEdge::Plugin::Plugin::plugins().size()); |