Function wasmedge_sys::ffi::WasmEdge_ExportTypeGetTableType
source · pub unsafe extern "C" fn WasmEdge_ExportTypeGetTableType(
ASTCxt: *const WasmEdge_ASTModuleContext,
Cxt: *const WasmEdge_ExportTypeContext
) -> *const WasmEdge_TableTypeContext
Expand description
Get the external value (which is table type) from an export type.
The export type context should be the one queried from the AST module
context, or this function will cause unexpected error.
The table type context links to the table type in the export type context
and the AST module context. The caller should NOT call the
WasmEdge_TableTypeDelete
.
\param ASTCxt the WasmEdge_ASTModuleContext.
\param Cxt the WasmEdge_ExportTypeContext which queried from the ASTCxt
.
\returns the table type. NULL if failed or the external type of the export
type is not WasmEdge_ExternalType_Table
.