Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/fiber/src/windows.c
1692 views
1
#include <windows.h>
2
3
#define CONCAT2(a, b) a##b
4
#define CONCAT(a, b) CONCAT2(a, b)
5
#define VERSIONED_SYMBOL(a) CONCAT(a, VERSIONED_SUFFIX)
6
7
LPVOID VERSIONED_SYMBOL(wasmtime_fiber_get_current)() {
8
return GetCurrentFiber();
9
}
10
11