| 1594 | // >>>>>>>> WasmEdge import type functions >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> |
| 1595 | |
| 1596 | WASMEDGE_CAPI_EXPORT enum WasmEdge_ExternalType |
| 1597 | WasmEdge_ImportTypeGetExternalType( |
| 1598 | const WasmEdge_ImportTypeContext *Cxt) noexcept { |
| 1599 | if (Cxt) { |
| 1600 | return static_cast<WasmEdge_ExternalType>( |
| 1601 | fromImpTypeCxt(Cxt)->getExternalType()); |
| 1602 | } |
| 1603 | return WasmEdge_ExternalType_Function; |
| 1604 | } |
| 1605 | |
| 1606 | WASMEDGE_CAPI_EXPORT WasmEdge_String WasmEdge_ImportTypeGetModuleName( |
| 1607 | const WasmEdge_ImportTypeContext *Cxt) noexcept { |