You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wasm3/source/m3_api_wasi.h

29 lines
524 B
C

//
// m3_api_wasi.h
//
// Created by Volodymyr Shymanskyy on 11/20/19.
// Copyright © 2019 Volodymyr Shymanskyy. All rights reserved.
//
#ifndef m3_api_wasi_h
#define m3_api_wasi_h
#include "m3_core.h"
d_m3BeginExternC
typedef struct m3_wasi_context_t
{
i32 exit_code;
u32 argc;
ccstr_t * argv;
} m3_wasi_context_t;
M3Result m3_LinkWASI (IM3Module io_module);
m3_wasi_context_t* m3_GetWasiContext();
d_m3EndExternC
#endif // m3_api_wasi_h