@@ -2087,6 +2087,12 @@ def wasmtime_config_max_wasm_stack_set(arg0: Any, arg1: Any) -> None:
20872087def wasmtime_config_wasm_threads_set (arg0 : Any , arg1 : Any ) -> None :
20882088 return _wasmtime_config_wasm_threads_set (arg0 , arg1 ) # type: ignore
20892089
2090+ _wasmtime_config_shared_memory_set = dll .wasmtime_config_shared_memory_set
2091+ _wasmtime_config_shared_memory_set .restype = None
2092+ _wasmtime_config_shared_memory_set .argtypes = [ctypes .POINTER (wasm_config_t ), ctypes .c_bool ]
2093+ def wasmtime_config_shared_memory_set (arg0 : Any , arg1 : Any ) -> None :
2094+ return _wasmtime_config_shared_memory_set (arg0 , arg1 ) # type: ignore
2095+
20902096_wasmtime_config_wasm_tail_call_set = dll .wasmtime_config_wasm_tail_call_set
20912097_wasmtime_config_wasm_tail_call_set .restype = None
20922098_wasmtime_config_wasm_tail_call_set .argtypes = [ctypes .POINTER (wasm_config_t ), ctypes .c_bool ]
@@ -3318,9 +3324,9 @@ class wasmtime_guestprofiler_modules(ctypes.Structure):
33183324
33193325_wasmtime_guestprofiler_new = dll .wasmtime_guestprofiler_new
33203326_wasmtime_guestprofiler_new .restype = ctypes .POINTER (wasmtime_guestprofiler_t )
3321- _wasmtime_guestprofiler_new .argtypes = [ctypes .POINTER (wasm_name_t ), ctypes .c_uint64 , ctypes .POINTER (wasmtime_guestprofiler_modules_t ), ctypes .c_size_t ]
3322- def wasmtime_guestprofiler_new (module_name : Any , interval_nanos : Any , modules : Any , modules_len : Any ) -> ctypes ._Pointer :
3323- return _wasmtime_guestprofiler_new (module_name , interval_nanos , modules , modules_len ) # type: ignore
3327+ _wasmtime_guestprofiler_new .argtypes = [ctypes .POINTER (wasm_engine_t ), ctypes . POINTER ( wasm_name_t ), ctypes .c_uint64 , ctypes .POINTER (wasmtime_guestprofiler_modules_t ), ctypes .c_size_t ]
3328+ def wasmtime_guestprofiler_new (engine : Any , module_name : Any , interval_nanos : Any , modules : Any , modules_len : Any ) -> ctypes ._Pointer :
3329+ return _wasmtime_guestprofiler_new (engine , module_name , interval_nanos , modules , modules_len ) # type: ignore
33243330
33253331_wasmtime_guestprofiler_sample = dll .wasmtime_guestprofiler_sample
33263332_wasmtime_guestprofiler_sample .restype = None
@@ -3966,6 +3972,12 @@ def wasmtime_component_func_type_clone(ty: Any) -> ctypes._Pointer:
39663972def wasmtime_component_func_type_delete (ty : Any ) -> None :
39673973 return _wasmtime_component_func_type_delete (ty ) # type: ignore
39683974
3975+ _wasmtime_component_func_type_async = dll .wasmtime_component_func_type_async
3976+ _wasmtime_component_func_type_async .restype = ctypes .c_bool
3977+ _wasmtime_component_func_type_async .argtypes = [ctypes .POINTER (wasmtime_component_func_type_t )]
3978+ def wasmtime_component_func_type_async (ty : Any ) -> bool :
3979+ return _wasmtime_component_func_type_async (ty ) # type: ignore
3980+
39693981_wasmtime_component_func_type_param_count = dll .wasmtime_component_func_type_param_count
39703982_wasmtime_component_func_type_param_count .restype = ctypes .c_size_t
39713983_wasmtime_component_func_type_param_count .argtypes = [ctypes .POINTER (wasmtime_component_func_type_t )]
0 commit comments