| 3555 | } |
| 3556 | |
| 3557 | WASMEDGE_CAPI_EXPORT uint32_t |
| 3558 | WasmEdge_VMGetFunctionListLength(const WasmEdge_VMContext *Cxt) noexcept { |
| 3559 | try { |
| 3560 | if (Cxt) { |
| 3561 | return static_cast<uint32_t>(Cxt->VM.getFunctionList().size()); |
| 3562 | } |
| 3563 | } catch (...) { |
| 3564 | handleCAPIError(); |
| 3565 | } |
| 3566 | return 0; |
| 3567 | } |
| 3568 | |
| 3569 | WASMEDGE_CAPI_EXPORT uint32_t WasmEdge_VMGetFunctionList( |
| 3570 | const WasmEdge_VMContext *Cxt, WasmEdge_String *Names, |