| 1577 | } |
| 1578 | |
| 1579 | WASMEDGE_CAPI_EXPORT enum WasmEdge_Mutability WasmEdge_GlobalTypeGetMutability( |
| 1580 | const WasmEdge_GlobalTypeContext *Cxt) noexcept { |
| 1581 | if (Cxt) { |
| 1582 | return static_cast<WasmEdge_Mutability>(fromGlobTypeCxt(Cxt)->getValMut()); |
| 1583 | } |
| 1584 | return WasmEdge_Mutability_Const; |
| 1585 | } |
| 1586 | |
| 1587 | WASMEDGE_CAPI_EXPORT void |
| 1588 | WasmEdge_GlobalTypeDelete(WasmEdge_GlobalTypeContext *Cxt) noexcept { |