Skip to content

Commit

Permalink
Update Win32 metadata (#2850)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr authored Feb 16, 2024
1 parent b2ce099 commit b62b802
Show file tree
Hide file tree
Showing 30 changed files with 1,162 additions and 615 deletions.
Binary file modified crates/libs/bindgen/default/Windows.Win32.winmd
Binary file not shown.
2 changes: 1 addition & 1 deletion crates/libs/bindgen/default/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ like [ILSpy](https://github.com/icsharpcode/ILSpy).

## Windows.Win32.winmd
- Source: https://www.nuget.org/packages/Microsoft.Windows.SDK.Win32Metadata/
- Version: 57.0.42
- Version: 58.0.18

## Windows.Wdk.winmd
- Source: https://www.nuget.org/packages/Microsoft.Windows.WDK.Win32Metadata/
Expand Down
6 changes: 6 additions & 0 deletions crates/libs/bindgen/src/rust/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ fn field_initializer<'a>(writer: &Writer, field: metadata::Field, input: &'a str
let literals = literals.iter().map(|literal| TokenStream::from(*literal));
(quote! { #name: [#(#literals,)*], }, rest)
}
metadata::Type::MutPtr(_, _) => {
// The Win32 metadata uses integer values for initializing pointers. This is a workaround
// to allow most such cases to work.
let (_, rest) = read_literal(input);
(quote! { #name: ::core::ptr::null_mut(), }, rest)
}
_ => {
let (literal, rest) = read_literal(input);
let literal: TokenStream = literal.into();
Expand Down

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions crates/libs/sys/src/Windows/Win32/Devices/Properties/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ pub const DEVPROP_MASK_TYPEMOD: u32 = 61440u32;
pub const DEVPROP_STORE_SYSTEM: DEVPROPSTORE = 0i32;
pub const DEVPROP_STORE_USER: DEVPROPSTORE = 1i32;
pub const DEVPROP_TRUE: DEVPROP_BOOLEAN = 255u8;
pub const DEVPROP_TYPEMOD_ARRAY: u32 = 4096u32;
pub const DEVPROP_TYPEMOD_LIST: u32 = 8192u32;
pub const DEVPROP_TYPEMOD_ARRAY: DEVPROPTYPE = 4096u32;
pub const DEVPROP_TYPEMOD_LIST: DEVPROPTYPE = 8192u32;
pub const DEVPROP_TYPE_BINARY: DEVPROPTYPE = 4099u32;
pub const DEVPROP_TYPE_BOOLEAN: DEVPROPTYPE = 17u32;
pub const DEVPROP_TYPE_BYTE: DEVPROPTYPE = 3u32;
Expand Down
88 changes: 88 additions & 0 deletions crates/libs/sys/src/Windows/Win32/NetworkManagement/WiFi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,94 @@ pub const DEVPKEY_InfraCast_StreamSecuritySupported: super::super::Devices::Prop
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_InfraCast_Supported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 17 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_AERCapabilityPresent: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 17 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_AcsCapabilityRegister: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 32 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_AcsCompatibleUpHierarchy: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 31 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_AcsSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 29 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_AriSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 30 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_AtomicsSupported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 35 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_AtsSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 33 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_BarTypes: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 16 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_BaseClass: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 3 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_Correctable_Error_Mask: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 21 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_CurrentLinkSpeed: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 9 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_CurrentLinkWidth: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 10 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_CurrentPayloadSize: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 6 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_CurrentSpeedAndMode: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 2 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_D3ColdSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 38 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_DeviceType: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 1 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_ECRC_Errors: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 22 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_Error_Reporting: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 23 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_ExpressSpecVersion: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 13 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_FirmwareErrorHandling: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 18 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_InterruptMessageMaximum: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 15 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_InterruptSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 14 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_Label_Id: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 27 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_Label_String: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 28 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_MaxLinkSpeed: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 11 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_MaxLinkWidth: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 12 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_MaxPayloadSize: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 7 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_MaxReadRequestSize: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 8 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_OnPostPath: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 37 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_ParentSerialNumber: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 45 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_ProgIf: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 5 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_RequiresReservedMemoryRegion: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 34 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_RootError_Reporting: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 24 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_S0WakeupSupported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 25 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_SerialNumber: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 40 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_SriovSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 26 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_SubClass: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 4 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_SupportedLinkSubState: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 36 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_Uncorrectable_Error_Mask: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 19 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_Uncorrectable_Error_Severity: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 20 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_UsbComponentRelation: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 43 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_UsbDvsecPortSpecificAttributes: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 42 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_UsbDvsecPortType: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 41 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciDevice_UsbHostRouterName: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 44 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciRootBus_ASPMSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 8 };
#[cfg(feature = "Win32_Devices_Properties")]
pub const DEVPKEY_PciRootBus_ClockPowerManagementSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: ::windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 9 };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@
::windows_targets::link!("ole32.dll" "system" fn ReadFmtUserTypeStg(pstg : * mut::core::ffi::c_void, pcf : *mut u16, lplpszusertype : *mut ::windows_sys::core::PWSTR) -> ::windows_sys::core::HRESULT);
::windows_targets::link!("ole32.dll" "system" fn SetConvertStg(pstg : * mut::core::ffi::c_void, fconvert : super::super::super::Foundation:: BOOL) -> ::windows_sys::core::HRESULT);
#[cfg(feature = "Win32_System_Variant")]
::windows_targets::link!("ole32.dll" "system" fn StgConvertPropertyToVariant(pprop : *const SERIALIZEDPROPERTYVALUE, codepage : u16, pvar : *mut PROPVARIANT, pma : * mut::core::ffi::c_void) -> super::super::super::Foundation:: BOOLEAN);
#[cfg(feature = "Win32_System_Variant")]
::windows_targets::link!("ole32.dll" "system" fn StgConvertVariantToProperty(pvar : *const PROPVARIANT, codepage : u16, pprop : *mut SERIALIZEDPROPERTYVALUE, pcb : *mut u32, pid : u32, freserved : super::super::super::Foundation:: BOOLEAN, pcindirect : *mut u32) -> *mut SERIALIZEDPROPERTYVALUE);
::windows_targets::link!("ole32.dll" "system" fn StgCreateDocfile(pwcsname : ::windows_sys::core::PCWSTR, grfmode : super:: STGM, reserved : u32, ppstgopen : *mut * mut::core::ffi::c_void) -> ::windows_sys::core::HRESULT);
::windows_targets::link!("ole32.dll" "system" fn StgCreateDocfileOnILockBytes(plkbyt : * mut::core::ffi::c_void, grfmode : super:: STGM, reserved : u32, ppstgopen : *mut * mut::core::ffi::c_void) -> ::windows_sys::core::HRESULT);
Expand Down
20 changes: 0 additions & 20 deletions crates/libs/sys/src/Windows/Win32/System/Registry/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,26 +107,6 @@ pub const APMMENUSUSPEND_UNDOCKED: u32 = 2u32;
pub const APMTIMEOUT_DISABLED: u32 = 0u32;
pub const BIF_RAWDEVICENEEDSDRIVER: u32 = 2u32;
pub const BIF_SHOWSIMILARDRIVERS: u32 = 1u32;
pub const CONFIGFLAG_BOOT_DEVICE: u32 = 262144u32;
pub const CONFIGFLAG_CANTSTOPACHILD: u32 = 128u32;
pub const CONFIGFLAG_DISABLED: u32 = 1u32;
pub const CONFIGFLAG_FAILEDINSTALL: u32 = 64u32;
pub const CONFIGFLAG_FINISHINSTALL_ACTION: u32 = 131072u32;
pub const CONFIGFLAG_FINISHINSTALL_UI: u32 = 65536u32;
pub const CONFIGFLAG_FINISH_INSTALL: u32 = 1024u32;
pub const CONFIGFLAG_IGNORE_BOOT_LC: u32 = 8u32;
pub const CONFIGFLAG_MANUAL_INSTALL: u32 = 4u32;
pub const CONFIGFLAG_NEEDS_CLASS_CONFIG: u32 = 524288u32;
pub const CONFIGFLAG_NEEDS_FORCED_CONFIG: u32 = 2048u32;
pub const CONFIGFLAG_NETBOOT_CARD: u32 = 4096u32;
pub const CONFIGFLAG_NET_BOOT: u32 = 16u32;
pub const CONFIGFLAG_NOREMOVEEXIT: u32 = 512u32;
pub const CONFIGFLAG_OKREMOVEROM: u32 = 256u32;
pub const CONFIGFLAG_PARTIAL_LOG_CONF: u32 = 8192u32;
pub const CONFIGFLAG_REINSTALL: u32 = 32u32;
pub const CONFIGFLAG_REMOVED: u32 = 2u32;
pub const CONFIGFLAG_SUPPRESS_SURPRISE: u32 = 16384u32;
pub const CONFIGFLAG_VERIFY_HARDWARE: u32 = 32768u32;
pub const CSCONFIGFLAG_BITS: u32 = 7u32;
pub const CSCONFIGFLAG_DISABLED: u32 = 1u32;
pub const CSCONFIGFLAG_DO_NOT_CREATE: u32 = 2u32;
Expand Down
12 changes: 0 additions & 12 deletions crates/libs/sys/src/Windows/Win32/System/SystemServices/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1769,18 +1769,6 @@ pub const RESOURCEMANAGER_RECOVER: u32 = 4u32;
pub const RESOURCEMANAGER_REGISTER_PROTOCOL: u32 = 32u32;
pub const RESOURCEMANAGER_SET_INFORMATION: u32 = 2u32;
pub const ROT_COMPARE_MAX: u32 = 2048u32;
pub const RTL_CONDITION_VARIABLE_LOCKMODE_SHARED: u32 = 1u32;
pub const RTL_CRITICAL_SECTION_ALL_FLAG_BITS: u32 = 4278190080u32;
pub const RTL_CRITICAL_SECTION_DEBUG_FLAG_STATIC_INIT: u32 = 1u32;
pub const RTL_CRITICAL_SECTION_FLAG_DYNAMIC_SPIN: u32 = 33554432u32;
pub const RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO: u32 = 268435456u32;
pub const RTL_CRITICAL_SECTION_FLAG_NO_DEBUG_INFO: u32 = 16777216u32;
pub const RTL_CRITICAL_SECTION_FLAG_RESOURCE_TYPE: u32 = 134217728u32;
pub const RTL_CRITICAL_SECTION_FLAG_STATIC_INIT: u32 = 67108864u32;
pub const RTL_RUN_ONCE_ASYNC: u32 = 2u32;
pub const RTL_RUN_ONCE_CHECK_ONLY: u32 = 1u32;
pub const RTL_RUN_ONCE_CTX_RESERVED_BITS: u32 = 2u32;
pub const RTL_RUN_ONCE_INIT_FAILED: u32 = 4u32;
pub const RTL_UMS_VERSION: u32 = 256u32;
pub const RTL_VIRTUAL_UNWIND2_VALIDATE_PAC: u32 = 1u32;
pub const RUNTIME_FUNCTION_INDIRECT: u32 = 1u32;
Expand Down
Loading

0 comments on commit b62b802

Please sign in to comment.