Skip to content
Closed
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
14 changes: 7 additions & 7 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 @@ -1350,7 +1350,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 @@ -1425,7 +1425,7 @@ unsafe extern "C" {
pub const JSPromiseStateEnum_JS_PROMISE_PENDING: JSPromiseStateEnum = 0;
pub const JSPromiseStateEnum_JS_PROMISE_FULFILLED: JSPromiseStateEnum = 1;
pub const JSPromiseStateEnum_JS_PROMISE_REJECTED: JSPromiseStateEnum = 2;
pub type JSPromiseStateEnum = ::core::ffi::c_uint;
pub type JSPromiseStateEnum = ::core::ffi::c_int;
unsafe extern "C" {
pub fn JS_NewPromiseCapability(ctx: *mut JSContext, resolving_funcs: *mut JSValue) -> JSValue;
}
Expand All @@ -1449,7 +1449,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 @@ -1641,7 +1641,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 @@ -2194,4 +2194,4 @@ pub const JS_ATOM_Symbol_species: _bindgen_ty_2 = 224;
pub const JS_ATOM_Symbol_unscopables: _bindgen_ty_2 = 225;
pub const JS_ATOM_Symbol_asyncIterator: _bindgen_ty_2 = 226;
pub const JS_ATOM_END: _bindgen_ty_2 = 227;
pub type _bindgen_ty_2 = ::core::ffi::c_uint;
pub type _bindgen_ty_2 = ::core::ffi::c_int;
Loading