| 262 | |
| 263 | typedef uint8_t wasm_externkind_t; |
| 264 | enum wasm_externkind_enum { |
| 265 | WASM_EXTERN_FUNC, |
| 266 | WASM_EXTERN_GLOBAL, |
| 267 | WASM_EXTERN_TABLE, |
| 268 | WASM_EXTERN_MEMORY, |
| 269 | WASM_EXTERN_TAG, |
| 270 | }; |
| 271 | |
| 272 | WASM_API_EXTERN wasm_externkind_t wasm_externtype_kind(const wasm_externtype_t*); |
| 273 |
nothing calls this directly
no outgoing calls
no test coverage detected