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_tis always behind a pointer. You should start with a null pointer and then havewasmtime_module_newwrite 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: Dec 13 2025 at 19:03 UTC