wasm-embedded-lib 0.1.0

Embedded WASM C/wasm3 runtime library
1
2
3
4
5
6
7
8
9
10
11
12
13
//! WASME type header for internal use only
#ifndef WASME_INT_H
#define WASME_INT_H

#include "wasm3.h"

struct wasme_ctx_s {
    IM3Environment env;
    IM3Runtime rt;
    IM3Module mod;
};

#endif