krisbitney opened issue #6222:
The header just says
typedef struct wasmtime_module wasmtime_module_t;
. How can I get a complete type definition for the C struct?
krisbitney edited issue #6222:
The header just says
typedef struct wasmtime_module wasmtime_module_t;
. How can I get a complete type definition for the C struct to pass intowasmtime_module_new
?
krisbitney edited issue #6222:
The header just says
typedef struct wasmtime_module wasmtime_module_t;
. How can I get a complete type definition for the C struct so I can allocate it and pass it intowasmtime_module_new
?
bjorn3 commented on issue #6222:
See one of the examples:
wasmtime_module_t
is always behind a pointer. You should start with a null pointer and then havewasmtime_module_new
write the actual pointer value.
krisbitney commented on issue #6222:
Thanks!
krisbitney closed issue #6222:
The header just says
typedef struct wasmtime_module wasmtime_module_t;
. How can I get a complete type definition for the C struct so I can allocate it and pass it intowasmtime_module_new
?
Last updated: Nov 22 2024 at 16:03 UTC