Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

22
vendor/sys-locale/src/windows_sys.rs vendored Normal file
View File

@@ -0,0 +1,22 @@
// Bindings generated by `windows-bindgen` 0.51.1
#![allow(
non_snake_case,
non_upper_case_globals,
non_camel_case_types,
dead_code,
clippy::all
)]
#[link(name = "kernel32")]
extern "system" {
pub fn GetUserPreferredUILanguages(
dwflags: u32,
pulnumlanguages: *mut u32,
pwszlanguagesbuffer: PWSTR,
pcchlanguagesbuffer: *mut u32,
) -> BOOL;
}
pub type BOOL = i32;
pub const MUI_LANGUAGE_NAME: u32 = 8u32;
pub type PWSTR = *mut u16;
pub const TRUE: BOOL = 1i32;