Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions sys/src/bindings/aarch64-pc-windows-msvc.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* automatically generated by rust-bindgen 0.72.1 */

/* automatically generated by rust-bindgen 0.72.1 */
pub const JS_PROP_CONFIGURABLE: u32 = 1;
pub const JS_PROP_WRITABLE: u32 = 2;
pub const JS_PROP_ENUMERABLE: u32 = 4;
Expand Down Expand Up @@ -1400,7 +1400,7 @@ pub const JSTypedArrayEnum_JS_TYPED_ARRAY_BIG_UINT64: JSTypedArrayEnum = 8;
pub const JSTypedArrayEnum_JS_TYPED_ARRAY_FLOAT16: JSTypedArrayEnum = 9;
pub const JSTypedArrayEnum_JS_TYPED_ARRAY_FLOAT32: JSTypedArrayEnum = 10;
pub const JSTypedArrayEnum_JS_TYPED_ARRAY_FLOAT64: JSTypedArrayEnum = 11;
pub type JSTypedArrayEnum = ::core::ffi::c_uint;
pub type JSTypedArrayEnum = ::core::ffi::c_int;
unsafe extern "C" {
pub fn JS_NewTypedArray(
ctx: *mut JSContext,
Expand Down Expand Up @@ -1503,7 +1503,7 @@ pub const JSPromiseHookType_JS_PROMISE_HOOK_INIT: JSPromiseHookType = 0;
pub const JSPromiseHookType_JS_PROMISE_HOOK_BEFORE: JSPromiseHookType = 1;
pub const JSPromiseHookType_JS_PROMISE_HOOK_AFTER: JSPromiseHookType = 2;
pub const JSPromiseHookType_JS_PROMISE_HOOK_RESOLVE: JSPromiseHookType = 3;
pub type JSPromiseHookType = ::core::ffi::c_uint;
pub type JSPromiseHookType = ::core::ffi::c_int;
pub type JSPromiseHook = ::core::option::Option<
unsafe extern "C" fn(
ctx: *mut JSContext,
Expand Down Expand Up @@ -1744,7 +1744,7 @@ pub const JSCFunctionEnum_JS_CFUNC_setter: JSCFunctionEnum = 9;
pub const JSCFunctionEnum_JS_CFUNC_getter_magic: JSCFunctionEnum = 10;
pub const JSCFunctionEnum_JS_CFUNC_setter_magic: JSCFunctionEnum = 11;
pub const JSCFunctionEnum_JS_CFUNC_iterator_next: JSCFunctionEnum = 12;
pub type JSCFunctionEnum = ::core::ffi::c_uint;
pub type JSCFunctionEnum = ::core::ffi::c_int;
#[repr(C)]
#[derive(Copy, Clone)]
pub union JSCFunctionType {
Expand Down Expand Up @@ -2318,4 +2318,4 @@ pub const JS_ATOM_Symbol_species: _bindgen_ty_2 = 227;
pub const JS_ATOM_Symbol_unscopables: _bindgen_ty_2 = 228;
pub const JS_ATOM_Symbol_asyncIterator: _bindgen_ty_2 = 229;
pub const JS_ATOM_END: _bindgen_ty_2 = 230;
pub type _bindgen_ty_2 = ::core::ffi::c_uint;
pub type _bindgen_ty_2 = ::core::ffi::c_int;
Loading