ladybird/Userland/Libraries/LibWasm/Forward.h
Ali Mohammad Pur 7e4e9fdb8f LibWasm: Start implementing WASI
This commit starts adding support for WASI, along with the framework to
implement all the functions (though only a couple are currently
implemented).
2023-04-26 03:47:15 +03:30

21 lines
278 B
C++

/*
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Wasm {
class AbstractMachine;
class Validator;
struct ValidationError;
struct Interpreter;
namespace Wasi {
struct Implementation;
}
}