blob: 7ae99a9f1b51b28b64076d7c12546234f639c935 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
namespace WAVM { namespace Runtime {
struct Compartment;
struct Instance;
}}
namespace WAVM { namespace ThreadTest {
WAVM_API Runtime::Instance* instantiate(Runtime::Compartment* compartment);
}}
|