1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
language = "C"
include_guard = "_WASMTIME_PLATFORM_H"
include_version = true
cpp_compat = true
header = """
// Platform support for Wasmtime's `no_std` build.
//
// This header file is what Wasmtime will rely on when it does not otherwise
// have support for the native platform. This can happen with `no_std` binaries
// for example where the traditional Unix-or-Windows implementation is not
// suitable.
//
// Embedders are expected to implement the symbols defined in this header file.
// These symbols can be defined either in C/C++ or in Rust (using
// `#[no_mangle]`).
//
// Some more information about this header can additionally be found at
// <https://docs.wasmtime.dev/stability-platform-support.html>.
"""
|