├── .cargo └── config.toml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── actions │ └── fix-environment │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── clippy.yml │ ├── cross.yml │ ├── doc.yml │ ├── fmt.yml │ ├── gen.yml │ ├── lib.yml │ ├── linux.yml │ ├── miri.yml │ ├── msrv.yml │ ├── no-default-features.yml │ ├── no_std.yml │ ├── publish.yml │ ├── slim_errors.yml │ ├── test.yml │ └── web.yml ├── .gitignore ├── Cargo.toml ├── crates ├── libs │ ├── bindgen │ │ ├── Cargo.toml │ │ ├── default │ │ │ ├── Windows.Wdk.winmd │ │ │ ├── Windows.Win32.winmd │ │ │ ├── Windows.winmd │ │ │ └── readme.md │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ ├── config │ │ │ ├── cfg.rs │ │ │ ├── cpp_handle.rs │ │ │ ├── format.rs │ │ │ ├── mod.rs │ │ │ ├── names.rs │ │ │ └── value.rs │ │ │ ├── derive.rs │ │ │ ├── derive_writer.rs │ │ │ ├── filter.rs │ │ │ ├── guid.rs │ │ │ ├── index.rs │ │ │ ├── io.rs │ │ │ ├── lib.rs │ │ │ ├── libraries.rs │ │ │ ├── method_names.rs │ │ │ ├── param.rs │ │ │ ├── references.rs │ │ │ ├── signature.rs │ │ │ ├── tables │ │ │ ├── attribute.rs │ │ │ ├── class_layout.rs │ │ │ ├── constant.rs │ │ │ ├── field.rs │ │ │ ├── generic_param.rs │ │ │ ├── impl_map.rs │ │ │ ├── interface_impl.rs │ │ │ ├── member_ref.rs │ │ │ ├── method_def.rs │ │ │ ├── method_param.rs │ │ │ ├── mod.rs │ │ │ ├── module_ref.rs │ │ │ ├── nested_class.rs │ │ │ ├── type_def.rs │ │ │ ├── type_ref.rs │ │ │ └── type_spec.rs │ │ │ ├── tokens │ │ │ ├── mod.rs │ │ │ ├── runtime.rs │ │ │ ├── to_tokens.rs │ │ │ └── token_stream.rs │ │ │ ├── type_map.rs │ │ │ ├── type_name.rs │ │ │ ├── type_tree.rs │ │ │ ├── types │ │ │ ├── class.rs │ │ │ ├── cpp_const.rs │ │ │ ├── cpp_delegate.rs │ │ │ ├── cpp_enum.rs │ │ │ ├── cpp_fn.rs │ │ │ ├── cpp_interface.rs │ │ │ ├── cpp_method.rs │ │ │ ├── cpp_struct.rs │ │ │ ├── delegate.rs │ │ │ ├── enum.rs │ │ │ ├── interface.rs │ │ │ ├── method.rs │ │ │ ├── mod.rs │ │ │ └── struct.rs │ │ │ ├── value.rs │ │ │ ├── warnings.rs │ │ │ └── winmd │ │ │ ├── attributes.rs │ │ │ ├── bindings.rs │ │ │ ├── blob.rs │ │ │ ├── codes.rs │ │ │ ├── file.rs │ │ │ ├── mod.rs │ │ │ ├── reader.rs │ │ │ └── row.rs │ ├── collections │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── iterable.rs │ │ │ ├── lib.rs │ │ │ ├── map_view.rs │ │ │ └── vector_view.rs │ ├── core │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ ├── src │ │ │ ├── agile_reference.rs │ │ │ ├── array.rs │ │ │ ├── as_impl.rs │ │ │ ├── com_object.rs │ │ │ ├── event.rs │ │ │ ├── guid.rs │ │ │ ├── handles.rs │ │ │ ├── imp │ │ │ │ ├── array_proxy.rs │ │ │ │ ├── bindings.rs │ │ │ │ ├── can_into.rs │ │ │ │ ├── com_bindings.rs │ │ │ │ ├── factory_cache.rs │ │ │ │ ├── generic_factory.rs │ │ │ │ ├── marshaler.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── ref_count.rs │ │ │ │ ├── sha1.rs │ │ │ │ ├── weak_ref_count.rs │ │ │ │ └── windows.rs │ │ │ ├── inspectable.rs │ │ │ ├── interface.rs │ │ │ ├── lib.rs │ │ │ ├── out_param.rs │ │ │ ├── out_ref.rs │ │ │ ├── param.rs │ │ │ ├── param_value.rs │ │ │ ├── ref.rs │ │ │ ├── runtime_name.rs │ │ │ ├── runtime_type.rs │ │ │ ├── scoped_interface.rs │ │ │ ├── type.rs │ │ │ ├── unknown.rs │ │ │ ├── weak.rs │ │ │ └── windows.rs │ │ └── windows-core.natvis │ ├── cppwinrt │ │ ├── Cargo.toml │ │ ├── cppwinrt.exe │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ ├── future │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ ├── async.rs │ │ │ ├── async_ready.rs │ │ │ ├── async_spawn.rs │ │ │ ├── bindings.rs │ │ │ ├── bindings_impl.rs │ │ │ ├── future.rs │ │ │ ├── join.rs │ │ │ ├── lib.rs │ │ │ ├── waiter.rs │ │ │ └── when.rs │ ├── implement │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ ├── gen.rs │ │ │ ├── lib.rs │ │ │ └── tests.rs │ ├── interface │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ ├── link │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ ├── metadata │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ ├── attributes.rs │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ ├── reader │ │ │ ├── blob.rs │ │ │ ├── codes.rs │ │ │ ├── file.rs │ │ │ ├── item_index.rs │ │ │ ├── mod.rs │ │ │ ├── row.rs │ │ │ ├── tables │ │ │ │ ├── assembly_ref.rs │ │ │ │ ├── attribute.rs │ │ │ │ ├── class_layout.rs │ │ │ │ ├── constant.rs │ │ │ │ ├── field.rs │ │ │ │ ├── generic_param.rs │ │ │ │ ├── impl_map.rs │ │ │ │ ├── interface_impl.rs │ │ │ │ ├── member_ref.rs │ │ │ │ ├── method_def.rs │ │ │ │ ├── method_param.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── module.rs │ │ │ │ ├── module_ref.rs │ │ │ │ ├── nested_class.rs │ │ │ │ ├── type_def.rs │ │ │ │ ├── type_ref.rs │ │ │ │ └── type_spec.rs │ │ │ ├── type_category.rs │ │ │ └── type_index.rs │ │ │ ├── signature.rs │ │ │ ├── ty.rs │ │ │ ├── type_name.rs │ │ │ ├── value.rs │ │ │ └── writer │ │ │ ├── codes.rs │ │ │ ├── file │ │ │ ├── blobs.rs │ │ │ ├── helpers.rs │ │ │ ├── into_stream.rs │ │ │ ├── mod.rs │ │ │ ├── rec.rs │ │ │ └── strings.rs │ │ │ ├── id.rs │ │ │ └── mod.rs │ ├── numerics │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ ├── matrix3x2.rs │ │ │ ├── matrix4x4.rs │ │ │ ├── vector2.rs │ │ │ ├── vector3.rs │ │ │ └── vector4.rs │ ├── registry │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── data.rs │ │ │ ├── key.rs │ │ │ ├── key_iterator.rs │ │ │ ├── lib.rs │ │ │ ├── open_options.rs │ │ │ ├── pcwstr.rs │ │ │ ├── transaction.rs │ │ │ ├── type.rs │ │ │ ├── value.rs │ │ │ └── value_iterator.rs │ ├── result │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ ├── src │ │ │ ├── bindings.rs │ │ │ ├── bool.rs │ │ │ ├── bstr.rs │ │ │ ├── com.rs │ │ │ ├── error.rs │ │ │ ├── hresult.rs │ │ │ ├── lib.rs │ │ │ ├── ntstatus.rs │ │ │ ├── rpc_status.rs │ │ │ ├── strings.rs │ │ │ └── win32_error.rs │ │ └── windows-result.natvis │ ├── services │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ ├── bindings.rs │ │ │ └── lib.rs │ ├── strings │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ ├── src │ │ │ ├── bindings.rs │ │ │ ├── bstr.rs │ │ │ ├── decode.rs │ │ │ ├── hstring.rs │ │ │ ├── hstring_builder.rs │ │ │ ├── hstring_header.rs │ │ │ ├── lib.rs │ │ │ ├── literals.rs │ │ │ ├── pcstr.rs │ │ │ ├── pcwstr.rs │ │ │ ├── pstr.rs │ │ │ ├── pwstr.rs │ │ │ └── ref_count.rs │ │ └── windows-strings.natvis │ ├── sys │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ ├── rustfmt.toml │ │ └── src │ │ │ ├── Windows │ │ │ ├── Wdk │ │ │ │ ├── Devices │ │ │ │ │ ├── Bluetooth │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── HumanInterfaceDevice │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Foundation │ │ │ │ │ └── mod.rs │ │ │ │ ├── Graphics │ │ │ │ │ ├── Direct3D │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── NetworkManagement │ │ │ │ │ ├── Ndis │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WindowsFilteringPlatform │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Storage │ │ │ │ │ ├── FileSystem │ │ │ │ │ │ ├── Minifilters │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── System │ │ │ │ │ ├── IO │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Memory │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── OfflineRegistry │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Registry │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── SystemInformation │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── SystemServices │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Threading │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Win32 │ │ │ │ ├── Data │ │ │ │ │ ├── HtmlHelp │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── RightsManagement │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Devices │ │ │ │ │ ├── AllJoyn │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Beep │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── BiometricFramework │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Bluetooth │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Cdrom │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Communication │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DeviceAndDriverInstallation │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DeviceQuery │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Display │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Dvd │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Enumeration │ │ │ │ │ │ ├── Pnp │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Fax │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── HumanInterfaceDevice │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Nfc │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Nfp │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── PortableDevices │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Pwm │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Sensors │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── SerialCommunication │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Tapi │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Usb │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WebServicesOnDevices │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Foundation │ │ │ │ │ └── mod.rs │ │ │ │ ├── Gaming │ │ │ │ │ └── mod.rs │ │ │ │ ├── Globalization │ │ │ │ │ └── mod.rs │ │ │ │ ├── Graphics │ │ │ │ │ ├── Dwm │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Gdi │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── GdiPlus │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Hlsl │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── OpenGL │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Printing │ │ │ │ │ │ ├── PrintTicket │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Management │ │ │ │ │ ├── MobileDeviceManagementRegistration │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Media │ │ │ │ │ ├── Audio │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DxMediaObjects │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── KernelStreaming │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Multimedia │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Streaming │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WindowsMediaFormat │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── NetworkManagement │ │ │ │ │ ├── Dhcp │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Dns │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── InternetConnectionWizard │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── IpHelper │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Multicast │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Ndis │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── NetBios │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── NetManagement │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── NetShell │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── NetworkDiagnosticsFramework │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── P2P │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── QoS │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Rras │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Snmp │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WNet │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WebDav │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WiFi │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WindowsConnectionManager │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WindowsFilteringPlatform │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WindowsFirewall │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WindowsNetworkVirtualization │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Networking │ │ │ │ │ ├── ActiveDirectory │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Clustering │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── HttpServer │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Ldap │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WebSocket │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WinHttp │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WinInet │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WinSock │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WindowsWebServices │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Security │ │ │ │ │ ├── AppLocker │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Authentication │ │ │ │ │ │ ├── Identity │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Authorization │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Credentials │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Cryptography │ │ │ │ │ │ ├── Catalog │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── Sip │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── UI │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DiagnosticDataQuery │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DirectoryServices │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── EnterpriseData │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ExtensibleAuthenticationProtocol │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Isolation │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── LicenseProtection │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── NetworkAccessProtection │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WinTrust │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WinWlx │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Storage │ │ │ │ │ ├── Cabinets │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── CloudFilters │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Compression │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DistributedFileSystem │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── FileHistory │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── FileSystem │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Imapi │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── IndexServer │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── InstallableFileSystems │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── IscsiDisc │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Jet │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Nvme │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── OfflineFiles │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── OperationRecorder │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Packaging │ │ │ │ │ │ ├── Appx │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ProjectedFileSystem │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── StructuredStorage │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Vhd │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Xps │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── System │ │ │ │ │ ├── AddressBook │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Antimalware │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ApplicationInstallationAndServicing │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ApplicationVerifier │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ClrHosting │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Com │ │ │ │ │ │ ├── Marshal │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── StructuredStorage │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── Urlmon │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ComponentServices │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Console │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── CorrelationVector │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DataExchange │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DeploymentServices │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DeveloperLicensing │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Diagnostics │ │ │ │ │ │ ├── Ceip │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── Extensions │ │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── Etw │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── ProcessSnapshotting │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── ToolHelp │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── TraceLogging │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DistributedTransactionCoordinator │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Environment │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ErrorReporting │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── EventCollector │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── EventLog │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── EventNotificationService │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── GroupPolicy │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── HostCompute │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── HostComputeNetwork │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── HostComputeSystem │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Hypervisor │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── IO │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Iis │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Ioctl │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── JobObjects │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Js │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Kernel │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── LibraryLoader │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Mailslots │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Mapi │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Memory │ │ │ │ │ │ ├── NonVolatile │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── MessageQueuing │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── MixedReality │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Ole │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── PasswordManagement │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Performance │ │ │ │ │ │ ├── HardwareCounterProfiling │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Pipes │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Power │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ProcessStatus │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Recovery │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Registry │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── RemoteDesktop │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── RemoteManagement │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── RestartManager │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Restore │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Rpc │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Search │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── SecurityCenter │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Services │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── SetupAndMigration │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Shutdown │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── StationsAndDesktops │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── SubsystemForLinux │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── SystemInformation │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── SystemServices │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Threading │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Time │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── TpmBaseServices │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── UserAccessLogging │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Variant │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── VirtualDosMachines │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WindowsProgramming │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Wmi │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── UI │ │ │ │ │ ├── Accessibility │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ColorSystem │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Controls │ │ │ │ │ │ ├── Dialogs │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── HiDpi │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Input │ │ │ │ │ │ ├── Ime │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── KeyboardAndMouse │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── Pointer │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── Touch │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── XboxController │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── InteractionContext │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Magnification │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Shell │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── PropertiesSystem │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── TabletPC │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── TextServices │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WindowsAndMessaging │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Web │ │ │ │ │ ├── InternetExplorer │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ │ ├── core │ │ │ ├── literals.rs │ │ │ └── mod.rs │ │ │ └── lib.rs │ ├── targets │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ ├── threading │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── pool.rs │ ├── version │ │ ├── Cargo.toml │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ ├── bindings.rs │ │ │ └── lib.rs │ └── windows │ │ ├── Cargo.toml │ │ ├── features.json │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ ├── rustfmt.toml │ │ └── src │ │ ├── Windows │ │ ├── AI │ │ │ ├── Actions │ │ │ │ ├── Hosting │ │ │ │ │ └── mod.rs │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Agents │ │ │ │ ├── Mcp │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── MachineLearning │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── ApplicationModel │ │ │ ├── Activation │ │ │ │ └── mod.rs │ │ │ ├── AppExtensions │ │ │ │ └── mod.rs │ │ │ ├── AppService │ │ │ │ └── mod.rs │ │ │ ├── Appointments │ │ │ │ ├── AppointmentsProvider │ │ │ │ │ └── mod.rs │ │ │ │ ├── DataProvider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Background │ │ │ │ └── mod.rs │ │ │ ├── Calls │ │ │ │ ├── Background │ │ │ │ │ └── mod.rs │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Chat │ │ │ │ └── mod.rs │ │ │ ├── CommunicationBlocking │ │ │ │ └── mod.rs │ │ │ ├── Contacts │ │ │ │ ├── DataProvider │ │ │ │ │ └── mod.rs │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── ConversationalAgent │ │ │ │ └── mod.rs │ │ │ ├── Core │ │ │ │ └── mod.rs │ │ │ ├── DataTransfer │ │ │ │ ├── DragDrop │ │ │ │ │ ├── Core │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── ShareTarget │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Email │ │ │ │ ├── DataProvider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── ExtendedExecution │ │ │ │ ├── Foreground │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Holographic │ │ │ │ └── mod.rs │ │ │ ├── LockScreen │ │ │ │ └── mod.rs │ │ │ ├── PackageExtensions │ │ │ │ └── mod.rs │ │ │ ├── Payments │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Preview │ │ │ │ ├── Holographic │ │ │ │ │ └── mod.rs │ │ │ │ ├── InkWorkspace │ │ │ │ │ └── mod.rs │ │ │ │ ├── Notes │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Resources │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ ├── Management │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Search │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── UserActivities │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── UserDataAccounts │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ ├── SystemAccess │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── UserDataTasks │ │ │ │ ├── DataProvider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── VoiceCommands │ │ │ │ └── mod.rs │ │ │ ├── Wallet │ │ │ │ ├── System │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Data │ │ │ ├── Html │ │ │ │ └── mod.rs │ │ │ ├── Json │ │ │ │ └── mod.rs │ │ │ ├── Pdf │ │ │ │ └── mod.rs │ │ │ ├── Text │ │ │ │ └── mod.rs │ │ │ ├── Xml │ │ │ │ ├── Dom │ │ │ │ │ └── mod.rs │ │ │ │ ├── Xsl │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Devices │ │ │ ├── Adc │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Background │ │ │ │ └── mod.rs │ │ │ ├── Bluetooth │ │ │ │ ├── Advertisement │ │ │ │ │ └── mod.rs │ │ │ │ ├── Background │ │ │ │ │ └── mod.rs │ │ │ │ ├── GenericAttributeProfile │ │ │ │ │ └── mod.rs │ │ │ │ ├── Rfcomm │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Custom │ │ │ │ └── mod.rs │ │ │ ├── Display │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Enumeration │ │ │ │ ├── Pnp │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Geolocation │ │ │ │ ├── Geofencing │ │ │ │ │ └── mod.rs │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Gpio │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Haptics │ │ │ │ └── mod.rs │ │ │ ├── HumanInterfaceDevice │ │ │ │ └── mod.rs │ │ │ ├── I2c │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Input │ │ │ │ ├── Preview │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Lights │ │ │ │ ├── Effects │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Midi │ │ │ │ └── mod.rs │ │ │ ├── PointOfService │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Portable │ │ │ │ └── mod.rs │ │ │ ├── Power │ │ │ │ └── mod.rs │ │ │ ├── Printers │ │ │ │ ├── Extensions │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Pwm │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Radios │ │ │ │ └── mod.rs │ │ │ ├── Scanners │ │ │ │ └── mod.rs │ │ │ ├── Sensors │ │ │ │ ├── Custom │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── SerialCommunication │ │ │ │ └── mod.rs │ │ │ ├── SmartCards │ │ │ │ └── mod.rs │ │ │ ├── Sms │ │ │ │ └── mod.rs │ │ │ ├── Spi │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Usb │ │ │ │ └── mod.rs │ │ │ ├── WiFi │ │ │ │ └── mod.rs │ │ │ ├── WiFiDirect │ │ │ │ ├── Services │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Foundation │ │ │ ├── Collections │ │ │ │ └── mod.rs │ │ │ ├── Diagnostics │ │ │ │ └── mod.rs │ │ │ ├── Metadata │ │ │ │ └── mod.rs │ │ │ ├── Numerics │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Gaming │ │ │ ├── Input │ │ │ │ ├── Custom │ │ │ │ │ └── mod.rs │ │ │ │ ├── ForceFeedback │ │ │ │ │ └── mod.rs │ │ │ │ ├── Preview │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Preview │ │ │ │ ├── GamesEnumeration │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── UI │ │ │ │ └── mod.rs │ │ │ ├── XboxLive │ │ │ │ ├── Storage │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Globalization │ │ │ ├── Collation │ │ │ │ └── mod.rs │ │ │ ├── DateTimeFormatting │ │ │ │ └── mod.rs │ │ │ ├── Fonts │ │ │ │ └── mod.rs │ │ │ ├── NumberFormatting │ │ │ │ └── mod.rs │ │ │ ├── PhoneNumberFormatting │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Graphics │ │ │ ├── Capture │ │ │ │ └── mod.rs │ │ │ ├── DirectX │ │ │ │ ├── Direct3D11 │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Display │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Effects │ │ │ │ └── mod.rs │ │ │ ├── Holographic │ │ │ │ └── mod.rs │ │ │ ├── Imaging │ │ │ │ └── mod.rs │ │ │ ├── Printing │ │ │ │ ├── OptionDetails │ │ │ │ │ └── mod.rs │ │ │ │ ├── PrintSupport │ │ │ │ │ └── mod.rs │ │ │ │ ├── PrintTicket │ │ │ │ │ └── mod.rs │ │ │ │ ├── ProtectedPrint │ │ │ │ │ └── mod.rs │ │ │ │ ├── Workflow │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Printing3D │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Management │ │ │ ├── Core │ │ │ │ └── mod.rs │ │ │ ├── Deployment │ │ │ │ ├── Preview │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Policies │ │ │ │ └── mod.rs │ │ │ ├── Setup │ │ │ │ └── mod.rs │ │ │ ├── Update │ │ │ │ └── mod.rs │ │ │ ├── Workplace │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Media │ │ │ ├── AppBroadcasting │ │ │ │ └── mod.rs │ │ │ ├── AppRecording │ │ │ │ └── mod.rs │ │ │ ├── Audio │ │ │ │ └── mod.rs │ │ │ ├── Capture │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ ├── Frames │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Casting │ │ │ │ └── mod.rs │ │ │ ├── ClosedCaptioning │ │ │ │ └── mod.rs │ │ │ ├── ContentRestrictions │ │ │ │ └── mod.rs │ │ │ ├── Control │ │ │ │ └── mod.rs │ │ │ ├── Core │ │ │ │ ├── Preview │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Devices │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── DialProtocol │ │ │ │ └── mod.rs │ │ │ ├── Editing │ │ │ │ └── mod.rs │ │ │ ├── Effects │ │ │ │ └── mod.rs │ │ │ ├── FaceAnalysis │ │ │ │ └── mod.rs │ │ │ ├── Import │ │ │ │ └── mod.rs │ │ │ ├── MediaProperties │ │ │ │ └── mod.rs │ │ │ ├── Miracast │ │ │ │ └── mod.rs │ │ │ ├── Ocr │ │ │ │ └── mod.rs │ │ │ ├── PlayTo │ │ │ │ └── mod.rs │ │ │ ├── Playback │ │ │ │ └── mod.rs │ │ │ ├── Playlists │ │ │ │ └── mod.rs │ │ │ ├── Protection │ │ │ │ ├── PlayReady │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Render │ │ │ │ └── mod.rs │ │ │ ├── SpeechRecognition │ │ │ │ └── mod.rs │ │ │ ├── SpeechSynthesis │ │ │ │ └── mod.rs │ │ │ ├── Streaming │ │ │ │ ├── Adaptive │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Transcoding │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Networking │ │ │ ├── BackgroundTransfer │ │ │ │ └── mod.rs │ │ │ ├── Connectivity │ │ │ │ └── mod.rs │ │ │ ├── NetworkOperators │ │ │ │ └── mod.rs │ │ │ ├── Proximity │ │ │ │ └── mod.rs │ │ │ ├── PushNotifications │ │ │ │ └── mod.rs │ │ │ ├── ServiceDiscovery │ │ │ │ ├── Dnssd │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Sockets │ │ │ │ └── mod.rs │ │ │ ├── Vpn │ │ │ │ └── mod.rs │ │ │ ├── XboxLive │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Perception │ │ │ ├── Automation │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── People │ │ │ │ └── mod.rs │ │ │ ├── Spatial │ │ │ │ ├── Preview │ │ │ │ │ └── mod.rs │ │ │ │ ├── Surfaces │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Security │ │ │ ├── Authentication │ │ │ │ ├── Identity │ │ │ │ │ ├── Core │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── OnlineId │ │ │ │ │ └── mod.rs │ │ │ │ ├── Web │ │ │ │ │ ├── Core │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Provider │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Authorization │ │ │ │ ├── AppCapabilityAccess │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Credentials │ │ │ │ ├── UI │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Cryptography │ │ │ │ ├── Certificates │ │ │ │ │ └── mod.rs │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ ├── DataProtection │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── DataProtection │ │ │ │ └── mod.rs │ │ │ ├── EnterpriseData │ │ │ │ └── mod.rs │ │ │ ├── ExchangeActiveSyncProvisioning │ │ │ │ └── mod.rs │ │ │ ├── Isolation │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Services │ │ │ ├── Maps │ │ │ │ ├── Guidance │ │ │ │ │ └── mod.rs │ │ │ │ ├── LocalSearch │ │ │ │ │ └── mod.rs │ │ │ │ ├── OfflineMaps │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Store │ │ │ │ └── mod.rs │ │ │ ├── TargetedContent │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Storage │ │ │ ├── AccessCache │ │ │ │ └── mod.rs │ │ │ ├── BulkAccess │ │ │ │ └── mod.rs │ │ │ ├── Compression │ │ │ │ └── mod.rs │ │ │ ├── FileProperties │ │ │ │ └── mod.rs │ │ │ ├── Pickers │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Provider │ │ │ │ └── mod.rs │ │ │ ├── Search │ │ │ │ └── mod.rs │ │ │ ├── Streams │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── System │ │ │ ├── Diagnostics │ │ │ │ ├── DevicePortal │ │ │ │ │ └── mod.rs │ │ │ │ ├── Telemetry │ │ │ │ │ └── mod.rs │ │ │ │ ├── TraceReporting │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Display │ │ │ │ └── mod.rs │ │ │ ├── Implementation │ │ │ │ ├── FileExplorer │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Inventory │ │ │ │ └── mod.rs │ │ │ ├── Power │ │ │ │ └── mod.rs │ │ │ ├── Profile │ │ │ │ ├── SystemManufacturers │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── RemoteDesktop │ │ │ │ ├── Input │ │ │ │ │ └── mod.rs │ │ │ │ ├── Provider │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── RemoteSystems │ │ │ │ └── mod.rs │ │ │ ├── Threading │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Update │ │ │ │ └── mod.rs │ │ │ ├── UserProfile │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── UI │ │ │ ├── Accessibility │ │ │ │ └── mod.rs │ │ │ ├── ApplicationSettings │ │ │ │ └── mod.rs │ │ │ ├── Composition │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ ├── Desktop │ │ │ │ │ └── mod.rs │ │ │ │ ├── Diagnostics │ │ │ │ │ └── mod.rs │ │ │ │ ├── Effects │ │ │ │ │ └── mod.rs │ │ │ │ ├── Interactions │ │ │ │ │ └── mod.rs │ │ │ │ ├── Scenes │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Core │ │ │ │ ├── AnimationMetrics │ │ │ │ │ └── mod.rs │ │ │ │ ├── Preview │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Input │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ ├── Inking │ │ │ │ │ ├── Analysis │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Core │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Preview │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Preview │ │ │ │ │ ├── Injection │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Text │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Spatial │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Notifications │ │ │ │ ├── Management │ │ │ │ │ └── mod.rs │ │ │ │ ├── Preview │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Popups │ │ │ │ └── mod.rs │ │ │ ├── Shell │ │ │ │ └── mod.rs │ │ │ ├── StartScreen │ │ │ │ └── mod.rs │ │ │ ├── Text │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── UIAutomation │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── ViewManagement │ │ │ │ ├── Core │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── WebUI │ │ │ │ └── mod.rs │ │ │ ├── WindowManagement │ │ │ │ ├── Preview │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Wdk │ │ │ ├── Devices │ │ │ │ ├── Bluetooth │ │ │ │ │ └── mod.rs │ │ │ │ ├── HumanInterfaceDevice │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Foundation │ │ │ │ └── mod.rs │ │ │ ├── Graphics │ │ │ │ ├── Direct3D │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── NetworkManagement │ │ │ │ ├── Ndis │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsFilteringPlatform │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Storage │ │ │ │ ├── FileSystem │ │ │ │ │ ├── Minifilters │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── System │ │ │ │ ├── IO │ │ │ │ │ └── mod.rs │ │ │ │ ├── Memory │ │ │ │ │ └── mod.rs │ │ │ │ ├── OfflineRegistry │ │ │ │ │ └── mod.rs │ │ │ │ ├── Registry │ │ │ │ │ └── mod.rs │ │ │ │ ├── SystemInformation │ │ │ │ │ └── mod.rs │ │ │ │ ├── SystemServices │ │ │ │ │ └── mod.rs │ │ │ │ ├── Threading │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Web │ │ │ ├── AtomPub │ │ │ │ └── mod.rs │ │ │ ├── Http │ │ │ │ ├── Diagnostics │ │ │ │ │ └── mod.rs │ │ │ │ ├── Filters │ │ │ │ │ └── mod.rs │ │ │ │ ├── Headers │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Syndication │ │ │ │ └── mod.rs │ │ │ ├── UI │ │ │ │ ├── Interop │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── Win32 │ │ │ ├── AI │ │ │ │ ├── MachineLearning │ │ │ │ │ ├── DirectML │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── WinML │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Data │ │ │ │ ├── HtmlHelp │ │ │ │ │ └── mod.rs │ │ │ │ ├── RightsManagement │ │ │ │ │ └── mod.rs │ │ │ │ ├── Xml │ │ │ │ │ ├── MsXml │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── XmlLite │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Devices │ │ │ │ ├── AllJoyn │ │ │ │ │ └── mod.rs │ │ │ │ ├── Beep │ │ │ │ │ └── mod.rs │ │ │ │ ├── BiometricFramework │ │ │ │ │ └── mod.rs │ │ │ │ ├── Bluetooth │ │ │ │ │ └── mod.rs │ │ │ │ ├── Cdrom │ │ │ │ │ └── mod.rs │ │ │ │ ├── Communication │ │ │ │ │ └── mod.rs │ │ │ │ ├── DeviceAccess │ │ │ │ │ └── mod.rs │ │ │ │ ├── DeviceAndDriverInstallation │ │ │ │ │ └── mod.rs │ │ │ │ ├── DeviceQuery │ │ │ │ │ └── mod.rs │ │ │ │ ├── Display │ │ │ │ │ └── mod.rs │ │ │ │ ├── Dvd │ │ │ │ │ └── mod.rs │ │ │ │ ├── Enumeration │ │ │ │ │ ├── Pnp │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Fax │ │ │ │ │ └── mod.rs │ │ │ │ ├── FunctionDiscovery │ │ │ │ │ └── mod.rs │ │ │ │ ├── Geolocation │ │ │ │ │ └── mod.rs │ │ │ │ ├── HumanInterfaceDevice │ │ │ │ │ └── mod.rs │ │ │ │ ├── ImageAcquisition │ │ │ │ │ └── mod.rs │ │ │ │ ├── Nfc │ │ │ │ │ └── mod.rs │ │ │ │ ├── Nfp │ │ │ │ │ └── mod.rs │ │ │ │ ├── PortableDevices │ │ │ │ │ └── mod.rs │ │ │ │ ├── Properties │ │ │ │ │ └── mod.rs │ │ │ │ ├── Pwm │ │ │ │ │ └── mod.rs │ │ │ │ ├── Sensors │ │ │ │ │ └── mod.rs │ │ │ │ ├── SerialCommunication │ │ │ │ │ └── mod.rs │ │ │ │ ├── Tapi │ │ │ │ │ └── mod.rs │ │ │ │ ├── Usb │ │ │ │ │ └── mod.rs │ │ │ │ ├── WebServicesOnDevices │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Foundation │ │ │ │ └── mod.rs │ │ │ ├── Gaming │ │ │ │ └── mod.rs │ │ │ ├── Globalization │ │ │ │ └── mod.rs │ │ │ ├── Graphics │ │ │ │ ├── CompositionSwapchain │ │ │ │ │ └── mod.rs │ │ │ │ ├── DXCore │ │ │ │ │ └── mod.rs │ │ │ │ ├── Direct2D │ │ │ │ │ ├── Common │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Direct3D │ │ │ │ │ ├── Dxc │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Fxc │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Direct3D10 │ │ │ │ │ └── mod.rs │ │ │ │ ├── Direct3D11 │ │ │ │ │ └── mod.rs │ │ │ │ ├── Direct3D11on12 │ │ │ │ │ └── mod.rs │ │ │ │ ├── Direct3D12 │ │ │ │ │ └── mod.rs │ │ │ │ ├── Direct3D9 │ │ │ │ │ └── mod.rs │ │ │ │ ├── Direct3D9on12 │ │ │ │ │ └── mod.rs │ │ │ │ ├── DirectComposition │ │ │ │ │ └── mod.rs │ │ │ │ ├── DirectDraw │ │ │ │ │ └── mod.rs │ │ │ │ ├── DirectManipulation │ │ │ │ │ └── mod.rs │ │ │ │ ├── DirectWrite │ │ │ │ │ └── mod.rs │ │ │ │ ├── Dwm │ │ │ │ │ └── mod.rs │ │ │ │ ├── Dxgi │ │ │ │ │ ├── Common │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Gdi │ │ │ │ │ └── mod.rs │ │ │ │ ├── GdiPlus │ │ │ │ │ └── mod.rs │ │ │ │ ├── Hlsl │ │ │ │ │ └── mod.rs │ │ │ │ ├── Imaging │ │ │ │ │ ├── D2D │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── OpenGL │ │ │ │ │ └── mod.rs │ │ │ │ ├── Printing │ │ │ │ │ ├── PrintTicket │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Management │ │ │ │ ├── MobileDeviceManagementRegistration │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Media │ │ │ │ ├── Audio │ │ │ │ │ ├── Apo │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DirectMusic │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── DirectSound │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Endpoints │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── XAudio2 │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── DeviceManager │ │ │ │ │ └── mod.rs │ │ │ │ ├── DirectShow │ │ │ │ │ ├── Tv │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Xml │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── DxMediaObjects │ │ │ │ │ └── mod.rs │ │ │ │ ├── KernelStreaming │ │ │ │ │ └── mod.rs │ │ │ │ ├── LibrarySharingServices │ │ │ │ │ └── mod.rs │ │ │ │ ├── MediaFoundation │ │ │ │ │ └── mod.rs │ │ │ │ ├── MediaPlayer │ │ │ │ │ └── mod.rs │ │ │ │ ├── Multimedia │ │ │ │ │ └── mod.rs │ │ │ │ ├── PictureAcquisition │ │ │ │ │ └── mod.rs │ │ │ │ ├── Speech │ │ │ │ │ └── mod.rs │ │ │ │ ├── Streaming │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsMediaFormat │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── NetworkManagement │ │ │ │ ├── Dhcp │ │ │ │ │ └── mod.rs │ │ │ │ ├── Dns │ │ │ │ │ └── mod.rs │ │ │ │ ├── InternetConnectionWizard │ │ │ │ │ └── mod.rs │ │ │ │ ├── IpHelper │ │ │ │ │ └── mod.rs │ │ │ │ ├── MobileBroadband │ │ │ │ │ └── mod.rs │ │ │ │ ├── Multicast │ │ │ │ │ └── mod.rs │ │ │ │ ├── Ndis │ │ │ │ │ └── mod.rs │ │ │ │ ├── NetBios │ │ │ │ │ └── mod.rs │ │ │ │ ├── NetManagement │ │ │ │ │ └── mod.rs │ │ │ │ ├── NetShell │ │ │ │ │ └── mod.rs │ │ │ │ ├── NetworkDiagnosticsFramework │ │ │ │ │ └── mod.rs │ │ │ │ ├── NetworkPolicyServer │ │ │ │ │ └── mod.rs │ │ │ │ ├── P2P │ │ │ │ │ └── mod.rs │ │ │ │ ├── QoS │ │ │ │ │ └── mod.rs │ │ │ │ ├── Rras │ │ │ │ │ └── mod.rs │ │ │ │ ├── Snmp │ │ │ │ │ └── mod.rs │ │ │ │ ├── WNet │ │ │ │ │ └── mod.rs │ │ │ │ ├── WebDav │ │ │ │ │ └── mod.rs │ │ │ │ ├── WiFi │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsConnectNow │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsConnectionManager │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsFilteringPlatform │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsFirewall │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsNetworkVirtualization │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Networking │ │ │ │ ├── ActiveDirectory │ │ │ │ │ └── mod.rs │ │ │ │ ├── BackgroundIntelligentTransferService │ │ │ │ │ └── mod.rs │ │ │ │ ├── Clustering │ │ │ │ │ └── mod.rs │ │ │ │ ├── HttpServer │ │ │ │ │ └── mod.rs │ │ │ │ ├── Ldap │ │ │ │ │ └── mod.rs │ │ │ │ ├── NetworkListManager │ │ │ │ │ └── mod.rs │ │ │ │ ├── RemoteDifferentialCompression │ │ │ │ │ └── mod.rs │ │ │ │ ├── WebSocket │ │ │ │ │ └── mod.rs │ │ │ │ ├── WinHttp │ │ │ │ │ └── mod.rs │ │ │ │ ├── WinInet │ │ │ │ │ └── mod.rs │ │ │ │ ├── WinSock │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsWebServices │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Security │ │ │ │ ├── AppLocker │ │ │ │ │ └── mod.rs │ │ │ │ ├── Authentication │ │ │ │ │ ├── Identity │ │ │ │ │ │ ├── Provider │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Authorization │ │ │ │ │ ├── UI │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── ConfigurationSnapin │ │ │ │ │ └── mod.rs │ │ │ │ ├── Credentials │ │ │ │ │ └── mod.rs │ │ │ │ ├── Cryptography │ │ │ │ │ ├── Catalog │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Certificates │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Sip │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── UI │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── DiagnosticDataQuery │ │ │ │ │ └── mod.rs │ │ │ │ ├── DirectoryServices │ │ │ │ │ └── mod.rs │ │ │ │ ├── EnterpriseData │ │ │ │ │ └── mod.rs │ │ │ │ ├── ExtensibleAuthenticationProtocol │ │ │ │ │ └── mod.rs │ │ │ │ ├── Isolation │ │ │ │ │ └── mod.rs │ │ │ │ ├── LicenseProtection │ │ │ │ │ └── mod.rs │ │ │ │ ├── NetworkAccessProtection │ │ │ │ │ └── mod.rs │ │ │ │ ├── Tpm │ │ │ │ │ └── mod.rs │ │ │ │ ├── WinTrust │ │ │ │ │ └── mod.rs │ │ │ │ ├── WinWlx │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Storage │ │ │ │ ├── Cabinets │ │ │ │ │ └── mod.rs │ │ │ │ ├── CloudFilters │ │ │ │ │ └── mod.rs │ │ │ │ ├── Compression │ │ │ │ │ └── mod.rs │ │ │ │ ├── DataDeduplication │ │ │ │ │ └── mod.rs │ │ │ │ ├── DistributedFileSystem │ │ │ │ │ └── mod.rs │ │ │ │ ├── EnhancedStorage │ │ │ │ │ └── mod.rs │ │ │ │ ├── FileHistory │ │ │ │ │ └── mod.rs │ │ │ │ ├── FileServerResourceManager │ │ │ │ │ └── mod.rs │ │ │ │ ├── FileSystem │ │ │ │ │ └── mod.rs │ │ │ │ ├── Imapi │ │ │ │ │ └── mod.rs │ │ │ │ ├── IndexServer │ │ │ │ │ └── mod.rs │ │ │ │ ├── InstallableFileSystems │ │ │ │ │ └── mod.rs │ │ │ │ ├── IscsiDisc │ │ │ │ │ └── mod.rs │ │ │ │ ├── Jet │ │ │ │ │ └── mod.rs │ │ │ │ ├── Nvme │ │ │ │ │ └── mod.rs │ │ │ │ ├── OfflineFiles │ │ │ │ │ └── mod.rs │ │ │ │ ├── OperationRecorder │ │ │ │ │ └── mod.rs │ │ │ │ ├── Packaging │ │ │ │ │ ├── Appx │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Opc │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── ProjectedFileSystem │ │ │ │ │ └── mod.rs │ │ │ │ ├── StructuredStorage │ │ │ │ │ └── mod.rs │ │ │ │ ├── Vhd │ │ │ │ │ └── mod.rs │ │ │ │ ├── VirtualDiskService │ │ │ │ │ └── mod.rs │ │ │ │ ├── Vss │ │ │ │ │ └── mod.rs │ │ │ │ ├── Xps │ │ │ │ │ ├── Printing │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── System │ │ │ │ ├── AddressBook │ │ │ │ │ └── mod.rs │ │ │ │ ├── Antimalware │ │ │ │ │ └── mod.rs │ │ │ │ ├── ApplicationInstallationAndServicing │ │ │ │ │ └── mod.rs │ │ │ │ ├── ApplicationVerifier │ │ │ │ │ └── mod.rs │ │ │ │ ├── AssessmentTool │ │ │ │ │ └── mod.rs │ │ │ │ ├── ClrHosting │ │ │ │ │ └── mod.rs │ │ │ │ ├── Com │ │ │ │ │ ├── CallObj │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ChannelCredentials │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Events │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Marshal │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── StructuredStorage │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── UI │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Urlmon │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── ComponentServices │ │ │ │ │ └── mod.rs │ │ │ │ ├── Console │ │ │ │ │ └── mod.rs │ │ │ │ ├── Contacts │ │ │ │ │ └── mod.rs │ │ │ │ ├── CorrelationVector │ │ │ │ │ └── mod.rs │ │ │ │ ├── DataExchange │ │ │ │ │ └── mod.rs │ │ │ │ ├── DeploymentServices │ │ │ │ │ └── mod.rs │ │ │ │ ├── DesktopSharing │ │ │ │ │ └── mod.rs │ │ │ │ ├── DeveloperLicensing │ │ │ │ │ └── mod.rs │ │ │ │ ├── Diagnostics │ │ │ │ │ ├── Ceip │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ClrProfiling │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── ActiveScript │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── Extensions │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Etw │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ProcessSnapshotting │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ToolHelp │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── TraceLogging │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── DistributedTransactionCoordinator │ │ │ │ │ └── mod.rs │ │ │ │ ├── Environment │ │ │ │ │ └── mod.rs │ │ │ │ ├── ErrorReporting │ │ │ │ │ └── mod.rs │ │ │ │ ├── EventCollector │ │ │ │ │ └── mod.rs │ │ │ │ ├── EventLog │ │ │ │ │ └── mod.rs │ │ │ │ ├── EventNotificationService │ │ │ │ │ └── mod.rs │ │ │ │ ├── GroupPolicy │ │ │ │ │ └── mod.rs │ │ │ │ ├── HostCompute │ │ │ │ │ └── mod.rs │ │ │ │ ├── HostComputeNetwork │ │ │ │ │ └── mod.rs │ │ │ │ ├── HostComputeSystem │ │ │ │ │ └── mod.rs │ │ │ │ ├── Hypervisor │ │ │ │ │ └── mod.rs │ │ │ │ ├── IO │ │ │ │ │ └── mod.rs │ │ │ │ ├── Iis │ │ │ │ │ └── mod.rs │ │ │ │ ├── Ioctl │ │ │ │ │ └── mod.rs │ │ │ │ ├── JobObjects │ │ │ │ │ └── mod.rs │ │ │ │ ├── Js │ │ │ │ │ └── mod.rs │ │ │ │ ├── Kernel │ │ │ │ │ └── mod.rs │ │ │ │ ├── LibraryLoader │ │ │ │ │ └── mod.rs │ │ │ │ ├── Mailslots │ │ │ │ │ └── mod.rs │ │ │ │ ├── Mapi │ │ │ │ │ └── mod.rs │ │ │ │ ├── Memory │ │ │ │ │ ├── NonVolatile │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── MessageQueuing │ │ │ │ │ └── mod.rs │ │ │ │ ├── MixedReality │ │ │ │ │ └── mod.rs │ │ │ │ ├── Mmc │ │ │ │ │ └── mod.rs │ │ │ │ ├── Ole │ │ │ │ │ └── mod.rs │ │ │ │ ├── ParentalControls │ │ │ │ │ └── mod.rs │ │ │ │ ├── PasswordManagement │ │ │ │ │ └── mod.rs │ │ │ │ ├── Performance │ │ │ │ │ ├── HardwareCounterProfiling │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── Pipes │ │ │ │ │ └── mod.rs │ │ │ │ ├── Power │ │ │ │ │ └── mod.rs │ │ │ │ ├── ProcessStatus │ │ │ │ │ └── mod.rs │ │ │ │ ├── RealTimeCommunications │ │ │ │ │ └── mod.rs │ │ │ │ ├── Recovery │ │ │ │ │ └── mod.rs │ │ │ │ ├── Registry │ │ │ │ │ └── mod.rs │ │ │ │ ├── RemoteAssistance │ │ │ │ │ └── mod.rs │ │ │ │ ├── RemoteDesktop │ │ │ │ │ └── mod.rs │ │ │ │ ├── RemoteManagement │ │ │ │ │ └── mod.rs │ │ │ │ ├── RestartManager │ │ │ │ │ └── mod.rs │ │ │ │ ├── Restore │ │ │ │ │ └── mod.rs │ │ │ │ ├── Rpc │ │ │ │ │ └── mod.rs │ │ │ │ ├── Search │ │ │ │ │ ├── Common │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── SecurityCenter │ │ │ │ │ └── mod.rs │ │ │ │ ├── ServerBackup │ │ │ │ │ └── mod.rs │ │ │ │ ├── Services │ │ │ │ │ └── mod.rs │ │ │ │ ├── SettingsManagementInfrastructure │ │ │ │ │ └── mod.rs │ │ │ │ ├── SetupAndMigration │ │ │ │ │ └── mod.rs │ │ │ │ ├── Shutdown │ │ │ │ │ └── mod.rs │ │ │ │ ├── SideShow │ │ │ │ │ └── mod.rs │ │ │ │ ├── StationsAndDesktops │ │ │ │ │ └── mod.rs │ │ │ │ ├── SubsystemForLinux │ │ │ │ │ └── mod.rs │ │ │ │ ├── SystemInformation │ │ │ │ │ └── mod.rs │ │ │ │ ├── SystemServices │ │ │ │ │ └── mod.rs │ │ │ │ ├── TaskScheduler │ │ │ │ │ └── mod.rs │ │ │ │ ├── Threading │ │ │ │ │ └── mod.rs │ │ │ │ ├── Time │ │ │ │ │ └── mod.rs │ │ │ │ ├── TpmBaseServices │ │ │ │ │ └── mod.rs │ │ │ │ ├── TransactionServer │ │ │ │ │ └── mod.rs │ │ │ │ ├── UpdateAgent │ │ │ │ │ └── mod.rs │ │ │ │ ├── UpdateAssessment │ │ │ │ │ └── mod.rs │ │ │ │ ├── UserAccessLogging │ │ │ │ │ └── mod.rs │ │ │ │ ├── Variant │ │ │ │ │ └── mod.rs │ │ │ │ ├── VirtualDosMachines │ │ │ │ │ └── mod.rs │ │ │ │ ├── WinRT │ │ │ │ │ ├── AllJoyn │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Composition │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── CoreInputView │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Direct3D11 │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Display │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Graphics │ │ │ │ │ │ ├── Capture │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── Direct2D │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ ├── Imaging │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Holographic │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Isolation │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── ML │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Media │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Metadata │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Pdf │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Printing │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Shell │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Storage │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsProgramming │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsSync │ │ │ │ │ └── mod.rs │ │ │ │ ├── Wmi │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── UI │ │ │ │ ├── Accessibility │ │ │ │ │ └── mod.rs │ │ │ │ ├── Animation │ │ │ │ │ └── mod.rs │ │ │ │ ├── ColorSystem │ │ │ │ │ └── mod.rs │ │ │ │ ├── Controls │ │ │ │ │ ├── Dialogs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── RichEdit │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── HiDpi │ │ │ │ │ └── mod.rs │ │ │ │ ├── Input │ │ │ │ │ ├── Ime │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Ink │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── KeyboardAndMouse │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Pointer │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Radial │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── Touch │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── XboxController │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── InteractionContext │ │ │ │ │ └── mod.rs │ │ │ │ ├── LegacyWindowsEnvironmentFeatures │ │ │ │ │ └── mod.rs │ │ │ │ ├── Magnification │ │ │ │ │ └── mod.rs │ │ │ │ ├── Notifications │ │ │ │ │ └── mod.rs │ │ │ │ ├── Ribbon │ │ │ │ │ └── mod.rs │ │ │ │ ├── Shell │ │ │ │ │ ├── Common │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── PropertiesSystem │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── TabletPC │ │ │ │ │ └── mod.rs │ │ │ │ ├── TextServices │ │ │ │ │ └── mod.rs │ │ │ │ ├── WindowsAndMessaging │ │ │ │ │ └── mod.rs │ │ │ │ ├── Wpf │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── Web │ │ │ │ ├── InternetExplorer │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ └── mod.rs │ │ ├── extensions.rs │ │ ├── extensions │ │ ├── Foundation.rs │ │ ├── Foundation │ │ │ └── TimeSpan.rs │ │ ├── Win32.rs │ │ └── Win32 │ │ │ ├── Foundation.rs │ │ │ ├── Foundation │ │ │ └── VARIANT_BOOL.rs │ │ │ ├── Networking.rs │ │ │ ├── Networking │ │ │ ├── WinSock.rs │ │ │ └── WinSock │ │ │ │ ├── IN6_ADDR.rs │ │ │ │ ├── IN_ADDR.rs │ │ │ │ ├── SOCKADDR_IN.rs │ │ │ │ ├── SOCKADDR_IN6.rs │ │ │ │ └── SOCKADDR_INET.rs │ │ │ ├── System.rs │ │ │ └── System │ │ │ ├── StructuredStorage.rs │ │ │ └── Variant.rs │ │ └── lib.rs ├── samples │ ├── components │ │ ├── json_validator │ │ │ ├── Cargo.toml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── json_validator_client │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ │ ├── client.cpp │ │ │ │ └── lib.rs │ │ ├── json_validator_winrt │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ ├── bindings.rs │ │ │ │ ├── lib.rs │ │ │ │ └── sample.idl │ │ ├── json_validator_winrt_client │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ ├── bindings.rs │ │ │ │ └── lib.rs │ │ └── json_validator_winrt_client_cpp │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ ├── client.cpp │ │ │ └── lib.rs │ ├── csharp │ │ ├── client │ │ │ ├── Cargo.toml │ │ │ ├── client.cs │ │ │ ├── client.csproj │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── component │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── readme.md │ ├── services │ │ ├── simple │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── time │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ ├── bindings.rs │ │ │ └── main.rs │ ├── windows-sys │ │ ├── counter │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── create_window │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── delay_load │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── enum_windows │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── message_box │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── privileges │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── service │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── task_dialog │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ ├── manifest.xml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── thread_pool_work │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ └── windows │ │ ├── bits │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── com_uri │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── consent │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── core_app │ │ ├── Cargo.toml │ │ ├── appx │ │ │ ├── AppxManifest.xml │ │ │ ├── SplashScreen.png │ │ │ ├── Square150x150Logo.png │ │ │ ├── Square44x44Logo.png │ │ │ └── StoreLogo.png │ │ ├── register.cmd │ │ └── src │ │ │ └── main.rs │ │ ├── counter │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── create_window │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── credentials │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── data_protection │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── dcomp │ │ ├── Cargo.toml │ │ ├── image.jpg │ │ ├── readme.md │ │ └── src │ │ │ └── main.rs │ │ ├── delay_load │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── device_watcher │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── direct2d │ │ ├── Cargo.toml │ │ ├── readme.md │ │ └── src │ │ │ └── main.rs │ │ ├── direct3d12 │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── readme.md │ │ └── src │ │ │ ├── main.rs │ │ │ └── shaders.hlsl │ │ ├── enum_windows │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── file_dialogs │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── manifest.xml │ │ └── src │ │ │ └── main.rs │ │ ├── kernel_event │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── memory_buffer │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── message_box │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── ocr │ │ ├── Cargo.toml │ │ ├── message.png │ │ └── src │ │ │ └── main.rs │ │ ├── overlapped │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── message.txt │ │ └── src │ │ │ └── main.rs │ │ ├── privileges │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── rss │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── shell │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── simple │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── spellchecker │ │ ├── Cargo.toml │ │ ├── readme.md │ │ └── src │ │ │ └── main.rs │ │ ├── task_dialog │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── manifest.xml │ │ └── src │ │ │ └── main.rs │ │ ├── thread_pool_work │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── uiautomation │ │ ├── Cargo.toml │ │ ├── readme.md │ │ └── src │ │ │ └── main.rs │ │ ├── wmi │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ └── xml │ │ ├── Cargo.toml │ │ └── src │ │ └── main.rs ├── targets │ ├── aarch64_gnullvm │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── lib │ │ │ └── libwindows.0.53.0.a │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ ├── aarch64_msvc │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── lib │ │ │ └── windows.0.53.0.lib │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ ├── baseline │ │ ├── aclui.dll.c │ │ ├── activeds.dll.c │ │ ├── advapi32.dll.c │ │ ├── advpack.dll.c │ │ ├── amsi.dll.c │ │ ├── api-ms-win-appmodel-runtime-l1-1-1.dll.c │ │ ├── api-ms-win-appmodel-runtime-l1-1-3.dll.c │ │ ├── api-ms-win-appmodel-runtime-l1-1-6.dll.c │ │ ├── api-ms-win-core-apiquery-l2-1-0.dll.c │ │ ├── api-ms-win-core-backgroundtask-l1-1-0.dll.c │ │ ├── api-ms-win-core-comm-l1-1-1.dll.c │ │ ├── api-ms-win-core-comm-l1-1-2.dll.c │ │ ├── api-ms-win-core-enclave-l1-1-1.dll.c │ │ ├── api-ms-win-core-errorhandling-l1-1-3.dll.c │ │ ├── api-ms-win-core-featurestaging-l1-1-0.dll.c │ │ ├── api-ms-win-core-featurestaging-l1-1-1.dll.c │ │ ├── api-ms-win-core-file-fromapp-l1-1-0.dll.c │ │ ├── api-ms-win-core-handle-l1-1-0.dll.c │ │ ├── api-ms-win-core-ioring-l1-1-0.dll.c │ │ ├── api-ms-win-core-libraryloader-l2-1-0.dll.c │ │ ├── api-ms-win-core-marshal-l1-1-0.dll.c │ │ ├── api-ms-win-core-memory-l1-1-3.dll.c │ │ ├── api-ms-win-core-memory-l1-1-4.dll.c │ │ ├── api-ms-win-core-memory-l1-1-5.dll.c │ │ ├── api-ms-win-core-memory-l1-1-6.dll.c │ │ ├── api-ms-win-core-memory-l1-1-7.dll.c │ │ ├── api-ms-win-core-memory-l1-1-8.dll.c │ │ ├── api-ms-win-core-path-l1-1-0.dll.c │ │ ├── api-ms-win-core-psm-appnotify-l1-1-0.dll.c │ │ ├── api-ms-win-core-psm-appnotify-l1-1-1.dll.c │ │ ├── api-ms-win-core-realtime-l1-1-1.dll.c │ │ ├── api-ms-win-core-realtime-l1-1-2.dll.c │ │ ├── api-ms-win-core-slapi-l1-1-0.dll.c │ │ ├── api-ms-win-core-state-helpers-l1-1-0.dll.c │ │ ├── api-ms-win-core-synch-l1-2-0.dll.c │ │ ├── api-ms-win-core-sysinfo-l1-2-0.dll.c │ │ ├── api-ms-win-core-sysinfo-l1-2-3.dll.c │ │ ├── api-ms-win-core-sysinfo-l1-2-4.dll.c │ │ ├── api-ms-win-core-sysinfo-l1-2-6.dll.c │ │ ├── api-ms-win-core-util-l1-1-1.dll.c │ │ ├── api-ms-win-core-winrt-error-l1-1-0.dll.c │ │ ├── api-ms-win-core-winrt-error-l1-1-1.dll.c │ │ ├── api-ms-win-core-winrt-l1-1-0.dll.c │ │ ├── api-ms-win-core-winrt-registration-l1-1-0.dll.c │ │ ├── api-ms-win-core-winrt-robuffer-l1-1-0.dll.c │ │ ├── api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll.c │ │ ├── api-ms-win-core-winrt-string-l1-1-0.dll.c │ │ ├── api-ms-win-core-winrt-string-l1-1-1.dll.c │ │ ├── api-ms-win-core-wow64-l1-1-1.dll.c │ │ ├── api-ms-win-devices-query-l1-1-0.dll.c │ │ ├── api-ms-win-devices-query-l1-1-1.dll.c │ │ ├── api-ms-win-dx-d3dkmt-l1-1-0.dll.c │ │ ├── api-ms-win-dx-d3dkmt-l1-1-4.dll.c │ │ ├── api-ms-win-dx-d3dkmt-l1-1-6.dll.c │ │ ├── api-ms-win-gaming-deviceinformation-l1-1-0.dll.c │ │ ├── api-ms-win-gaming-expandedresources-l1-1-0.dll.c │ │ ├── api-ms-win-gaming-tcui-l1-1-0.dll.c │ │ ├── api-ms-win-gaming-tcui-l1-1-1.dll.c │ │ ├── api-ms-win-gaming-tcui-l1-1-2.dll.c │ │ ├── api-ms-win-gaming-tcui-l1-1-3.dll.c │ │ ├── api-ms-win-gaming-tcui-l1-1-4.dll.c │ │ ├── api-ms-win-mm-misc-l1-1-1.dll.c │ │ ├── api-ms-win-net-isolation-l1-1-0.dll.c │ │ ├── api-ms-win-ro-typeresolution-l1-1-0.dll.c │ │ ├── api-ms-win-ro-typeresolution-l1-1-1.dll.c │ │ ├── api-ms-win-security-base-l1-2-2.dll.c │ │ ├── api-ms-win-security-isolatedcontainer-l1-1-0.dll.c │ │ ├── api-ms-win-security-isolatedcontainer-l1-1-1.dll.c │ │ ├── api-ms-win-service-core-l1-1-3.dll.c │ │ ├── api-ms-win-service-core-l1-1-4.dll.c │ │ ├── api-ms-win-service-core-l1-1-5.dll.c │ │ ├── api-ms-win-shcore-scaling-l1-1-0.dll.c │ │ ├── api-ms-win-shcore-scaling-l1-1-1.dll.c │ │ ├── api-ms-win-shcore-scaling-l1-1-2.dll.c │ │ ├── api-ms-win-shcore-stream-winrt-l1-1-0.dll.c │ │ ├── api-ms-win-wsl-api-l1-1-0.dll.c │ │ ├── apphelp.dll.c │ │ ├── authz.dll.c │ │ ├── avicap32.dll.c │ │ ├── avifil32.dll.c │ │ ├── avrt.dll.c │ │ ├── bcp47mrm.dll.c │ │ ├── bcrypt.dll.c │ │ ├── bcryptprimitives.dll.c │ │ ├── bluetoothapis.dll.c │ │ ├── bthprops.cpl.c │ │ ├── cabinet.dll.c │ │ ├── certadm.dll.c │ │ ├── certpoleng.dll.c │ │ ├── cfgmgr32.dll.c │ │ ├── chakra.dll.c │ │ ├── cldapi.dll.c │ │ ├── clfs.sys.c │ │ ├── clfsw32.dll.c │ │ ├── clusapi.dll.c │ │ ├── comctl32.dll.c │ │ ├── comdlg32.dll.c │ │ ├── compstui.dll.c │ │ ├── computecore.dll.c │ │ ├── computenetwork.dll.c │ │ ├── computestorage.dll.c │ │ ├── comsvcs.dll.c │ │ ├── coremessaging.dll.c │ │ ├── credui.dll.c │ │ ├── crypt32.dll.c │ │ ├── cryptnet.dll.c │ │ ├── cryptui.dll.c │ │ ├── cryptxml.dll.c │ │ ├── cscapi.dll.c │ │ ├── d2d1.dll.c │ │ ├── d3d10.dll.c │ │ ├── d3d10_1.dll.c │ │ ├── d3d11.dll.c │ │ ├── d3d12.dll.c │ │ ├── d3d9.dll.c │ │ ├── d3dcompiler_47.dll.c │ │ ├── d3dcsx.dll.c │ │ ├── davclnt.dll.c │ │ ├── dbgeng.dll.c │ │ ├── dbghelp.dll.c │ │ ├── dbgmodel.dll.c │ │ ├── dciman32.dll.c │ │ ├── dcomp.dll.c │ │ ├── ddraw.dll.c │ │ ├── deviceaccess.dll.c │ │ ├── dflayout.dll.c │ │ ├── dhcpcsvc.dll.c │ │ ├── dhcpcsvc6.dll.c │ │ ├── dhcpsapi.dll.c │ │ ├── diagnosticdataquery.dll.c │ │ ├── dinput8.dll.c │ │ ├── directml.dll.c │ │ ├── dmprocessxmlfiltered.dll.c │ │ ├── dnsapi.dll.c │ │ ├── drt.dll.c │ │ ├── drtprov.dll.c │ │ ├── drttransport.dll.c │ │ ├── dsound.dll.c │ │ ├── dsparse.dll.c │ │ ├── dsprop.dll.c │ │ ├── dssec.dll.c │ │ ├── dsuiext.dll.c │ │ ├── dwmapi.dll.c │ │ ├── dwrite.dll.c │ │ ├── dxcompiler.dll.c │ │ ├── dxcore.dll.c │ │ ├── dxgi.dll.c │ │ ├── dxva2.dll.c │ │ ├── eappcfg.dll.c │ │ ├── eappprxy.dll.c │ │ ├── efswrt.dll.c │ │ ├── elscore.dll.c │ │ ├── esent.dll.c │ │ ├── evr.dll.c │ │ ├── faultrep.dll.c │ │ ├── fhsvcctl.dll.c │ │ ├── firewallapi.dll.c │ │ ├── fltlib.dll.c │ │ ├── fltmgr.sys.c │ │ ├── fontsub.dll.c │ │ ├── fwpkclnt.sys.c │ │ ├── fwpuclnt.dll.c │ │ ├── fxsutility.dll.c │ │ ├── gdi32.dll.c │ │ ├── gdiplus.dll.c │ │ ├── glu32.dll.c │ │ ├── gpedit.dll.c │ │ ├── hal.dll.c │ │ ├── hhctrl.ocx.c │ │ ├── hid.dll.c │ │ ├── hlink.dll.c │ │ ├── hrtfapo.dll.c │ │ ├── httpapi.dll.c │ │ ├── icm32.dll.c │ │ ├── icmui.dll.c │ │ ├── icu.dll.c │ │ ├── icuin.dll.c │ │ ├── icuuc.dll.c │ │ ├── ieframe.dll.c │ │ ├── imagehlp.dll.c │ │ ├── imgutil.dll.c │ │ ├── imm32.dll.c │ │ ├── infocardapi.dll.c │ │ ├── inkobjcore.dll.c │ │ ├── iphlpapi.dll.c │ │ ├── iscsidsc.dll.c │ │ ├── isolatedwindowsenvironmentutils.dll.c │ │ ├── kernel32.dll.c │ │ ├── kernelbase.dll.c │ │ ├── keycredmgr.dll.c │ │ ├── ksecdd.sys.c │ │ ├── ksproxy.ax.c │ │ ├── ksuser.dll.c │ │ ├── ktmw32.dll.c │ │ ├── licenseprotection.dll.c │ │ ├── loadperf.dll.c │ │ ├── magnification.dll.c │ │ ├── mapi32.dll.c │ │ ├── mdmlocalmanagement.dll.c │ │ ├── mdmregistration.dll.c │ │ ├── mf.dll.c │ │ ├── mfcore.dll.c │ │ ├── mfplat.dll.c │ │ ├── mfplay.dll.c │ │ ├── mfreadwrite.dll.c │ │ ├── mfsensorgroup.dll.c │ │ ├── mfsrcsnk.dll.c │ │ ├── mgmtapi.dll.c │ │ ├── mi.dll.c │ │ ├── mmdevapi.dll.c │ │ ├── mpr.dll.c │ │ ├── mprapi.dll.c │ │ ├── mqrt.dll.c │ │ ├── mrmsupport.dll.c │ │ ├── msacm32.dll.c │ │ ├── msajapi.dll.c │ │ ├── mscms.dll.c │ │ ├── mscoree.dll.c │ │ ├── msctfmonitor.dll.c │ │ ├── msdelta.dll.c │ │ ├── msdmo.dll.c │ │ ├── msdrm.dll.c │ │ ├── msi.dll.c │ │ ├── msimg32.dll.c │ │ ├── mspatcha.dll.c │ │ ├── mspatchc.dll.c │ │ ├── msports.dll.c │ │ ├── msrating.dll.c │ │ ├── mssign32.dll.c │ │ ├── mstask.dll.c │ │ ├── msvfw32.dll.c │ │ ├── mswsock.dll.c │ │ ├── mtxdm.dll.c │ │ ├── ncrypt.dll.c │ │ ├── ndfapi.dll.c │ │ ├── ndis.sys.c │ │ ├── netapi32.dll.c │ │ ├── netsh.dll.c │ │ ├── netshell.dll.c │ │ ├── newdev.dll.c │ │ ├── ninput.dll.c │ │ ├── normaliz.dll.c │ │ ├── ntdll.dll.c │ │ ├── ntdllk.dll.c │ │ ├── ntdsapi.dll.c │ │ ├── ntlanman.dll.c │ │ ├── ntoskrnl.exe.c │ │ ├── odbc32.dll.c │ │ ├── odbcbcp.dll.c │ │ ├── offreg.dll.c │ │ ├── ole32.dll.c │ │ ├── oleacc.dll.c │ │ ├── oleaut32.dll.c │ │ ├── oledlg.dll.c │ │ ├── ondemandconnroutehelper.dll.c │ │ ├── opengl32.dll.c │ │ ├── opmxbox.dll.c │ │ ├── p2p.dll.c │ │ ├── p2pgraph.dll.c │ │ ├── pdh.dll.c │ │ ├── peerdist.dll.c │ │ ├── powrprof.dll.c │ │ ├── prntvpt.dll.c │ │ ├── projectedfslib.dll.c │ │ ├── propsys.dll.c │ │ ├── psapi.dll.c │ │ ├── pshed.dll.c │ │ ├── quartz.dll.c │ │ ├── query.dll.c │ │ ├── qwave.dll.c │ │ ├── rasapi32.dll.c │ │ ├── rasdlg.dll.c │ │ ├── readme.md │ │ ├── resutils.dll.c │ │ ├── rometadata.dll.c │ │ ├── rpcns4.dll.c │ │ ├── rpcproxy.dll.c │ │ ├── rpcrt4.dll.c │ │ ├── rstrtmgr.dll.c │ │ ├── rtm.dll.c │ │ ├── rtutils.dll.c │ │ ├── rtworkq.dll.c │ │ ├── sas.dll.c │ │ ├── scarddlg.dll.c │ │ ├── schannel.dll.c │ │ ├── sechost.dll.c │ │ ├── secur32.dll.c │ │ ├── sensapi.dll.c │ │ ├── sensorsutilsv2.dll.c │ │ ├── setupapi.dll.c │ │ ├── sfc.dll.c │ │ ├── shdocvw.dll.c │ │ ├── shell32.dll.c │ │ ├── shlwapi.dll.c │ │ ├── slc.dll.c │ │ ├── slcext.dll.c │ │ ├── slwga.dll.c │ │ ├── snmpapi.dll.c │ │ ├── spoolss.dll.c │ │ ├── srclient.dll.c │ │ ├── srpapi.dll.c │ │ ├── sspicli.dll.c │ │ ├── sti.dll.c │ │ ├── t2embed.dll.c │ │ ├── tapi32.dll.c │ │ ├── tbs.dll.c │ │ ├── tdh.dll.c │ │ ├── tokenbinding.dll.c │ │ ├── traffic.dll.c │ │ ├── txfw32.dll.c │ │ ├── ualapi.dll.c │ │ ├── uiautomationcore.dll.c │ │ ├── urlmon.dll.c │ │ ├── user32.dll.c │ │ ├── userenv.dll.c │ │ ├── usp10.dll.c │ │ ├── uxtheme.dll.c │ │ ├── verifier.dll.c │ │ ├── version.dll.c │ │ ├── vertdll.dll.c │ │ ├── vhfum.dll.c │ │ ├── virtdisk.dll.c │ │ ├── vmdevicehost.dll.c │ │ ├── vmsavedstatedumpprovider.dll.c │ │ ├── vssapi.dll.c │ │ ├── wcmapi.dll.c │ │ ├── wdsbp.dll.c │ │ ├── wdsclientapi.dll.c │ │ ├── wdsmc.dll.c │ │ ├── wdspxe.dll.c │ │ ├── wdstptc.dll.c │ │ ├── webauthn.dll.c │ │ ├── webservices.dll.c │ │ ├── websocket.dll.c │ │ ├── wecapi.dll.c │ │ ├── wer.dll.c │ │ ├── wevtapi.dll.c │ │ ├── winbio.dll.c │ │ ├── windows.ai.machinelearning.dll.c │ │ ├── windows.data.pdf.dll.c │ │ ├── windows.media.mediacontrol.dll.c │ │ ├── windows.networking.dll.c │ │ ├── windows.ui.dll.c │ │ ├── windows.ui.xaml.dll.c │ │ ├── windowscodecs.dll.c │ │ ├── winfax.dll.c │ │ ├── winhttp.dll.c │ │ ├── winhvemulation.dll.c │ │ ├── winhvplatform.dll.c │ │ ├── wininet.dll.c │ │ ├── winml.dll.c │ │ ├── winmm.dll.c │ │ ├── winscard.dll.c │ │ ├── winspool.drv.c │ │ ├── wintrust.dll.c │ │ ├── winusb.dll.c │ │ ├── wlanapi.dll.c │ │ ├── wlanui.dll.c │ │ ├── wldap32.dll.c │ │ ├── wldp.dll.c │ │ ├── wmvcore.dll.c │ │ ├── wnvapi.dll.c │ │ ├── wofutil.dll.c │ │ ├── ws2_32.dll.c │ │ ├── wscapi.dll.c │ │ ├── wsclient.dll.c │ │ ├── wsdapi.dll.c │ │ ├── wsmsvc.dll.c │ │ ├── wsnmp32.dll.c │ │ ├── wtsapi32.dll.c │ │ ├── xaudio2_8.dll.c │ │ ├── xinput1_4.dll.c │ │ ├── xmllite.dll.c │ │ ├── xolehlp.dll.c │ │ └── xpsprint.dll.c │ ├── i686_gnu │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── lib │ │ │ └── libwindows.0.53.0.a │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ ├── i686_gnullvm │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── lib │ │ │ └── libwindows.0.53.0.a │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ ├── i686_msvc │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── lib │ │ │ └── windows.0.53.0.lib │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ ├── x86_64_gnu │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── lib │ │ │ └── libwindows.0.53.0.a │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ ├── x86_64_gnullvm │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── lib │ │ │ └── libwindows.0.53.0.a │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ │ └── lib.rs │ └── x86_64_msvc │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── lib │ │ └── windows.0.53.0.lib │ │ ├── license-apache-2.0 │ │ ├── license-mit │ │ ├── readme.md │ │ └── src │ │ └── lib.rs ├── tests │ ├── libs │ │ ├── bindgen │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ ├── bool.rs │ │ │ │ ├── bool_event.rs │ │ │ │ ├── bool_event_sans_reference.rs │ │ │ │ ├── bool_sys.rs │ │ │ │ ├── bool_sys_no_core.rs │ │ │ │ ├── class.rs │ │ │ │ ├── class_dep.rs │ │ │ │ ├── class_static.rs │ │ │ │ ├── class_with_handler.rs │ │ │ │ ├── comment.rs │ │ │ │ ├── comment_no_allow.rs │ │ │ │ ├── core_sys.rs │ │ │ │ ├── core_sys_flat.rs │ │ │ │ ├── core_sys_flat_no_core.rs │ │ │ │ ├── core_sys_no_core.rs │ │ │ │ ├── core_win.rs │ │ │ │ ├── core_win_flat.rs │ │ │ │ ├── default_assumed.rs │ │ │ │ ├── default_default.rs │ │ │ │ ├── delegate.rs │ │ │ │ ├── delegate_cpp.rs │ │ │ │ ├── delegate_cpp_ref.rs │ │ │ │ ├── delegate_generic.rs │ │ │ │ ├── delegate_param.rs │ │ │ │ ├── deps.rs │ │ │ │ ├── derive_cpp_enum.rs │ │ │ │ ├── derive_cpp_struct.rs │ │ │ │ ├── derive_cpp_struct_sys.rs │ │ │ │ ├── derive_edges.rs │ │ │ │ ├── derive_enum.rs │ │ │ │ ├── derive_struct.rs │ │ │ │ ├── enum_cpp_flags_sys.rs │ │ │ │ ├── enum_cpp_flags_win.rs │ │ │ │ ├── enum_cpp_scoped_sys.rs │ │ │ │ ├── enum_cpp_scoped_win.rs │ │ │ │ ├── enum_cpp_sys.rs │ │ │ │ ├── enum_cpp_win.rs │ │ │ │ ├── enum_flags_sys.rs │ │ │ │ ├── enum_flags_win.rs │ │ │ │ ├── enum_sys.rs │ │ │ │ ├── enum_win.rs │ │ │ │ ├── fn_associated_enum_sys.rs │ │ │ │ ├── fn_associated_enum_win.rs │ │ │ │ ├── fn_no_return_sys.rs │ │ │ │ ├── fn_no_return_win.rs │ │ │ │ ├── fn_result_void_sys.rs │ │ │ │ ├── fn_return_void_sys.rs │ │ │ │ ├── fn_return_void_win.rs │ │ │ │ ├── fn_sys.rs │ │ │ │ ├── fn_sys_extern.rs │ │ │ │ ├── fn_sys_extern_ptrs.rs │ │ │ │ ├── fn_sys_ptrs.rs │ │ │ │ ├── fn_sys_targets.rs │ │ │ │ ├── fn_win.rs │ │ │ │ ├── interface.rs │ │ │ │ ├── interface_array_return.rs │ │ │ │ ├── interface_cpp.rs │ │ │ │ ├── interface_cpp_derive.rs │ │ │ │ ├── interface_cpp_derive_sys.rs │ │ │ │ ├── interface_cpp_return_udt.rs │ │ │ │ ├── interface_cpp_sys.rs │ │ │ │ ├── interface_cpp_sys_no_core.rs │ │ │ │ ├── interface_generic.rs │ │ │ │ ├── interface_iterable.rs │ │ │ │ ├── interface_required.rs │ │ │ │ ├── interface_required_sys.rs │ │ │ │ ├── interface_required_with_method.rs │ │ │ │ ├── interface_required_with_method_sys.rs │ │ │ │ ├── interface_sys.rs │ │ │ │ ├── interface_sys_no_core.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── multi.rs │ │ │ │ ├── multi_sys.rs │ │ │ │ ├── ref_params.rs │ │ │ │ ├── reference_dependency_flat.rs │ │ │ │ ├── reference_dependency_full.rs │ │ │ │ ├── reference_dependency_skip_root.rs │ │ │ │ ├── reference_dependent_flat.rs │ │ │ │ ├── reference_dependent_full.rs │ │ │ │ ├── reference_dependent_skip_root.rs │ │ │ │ ├── reference_struct_filter.rs │ │ │ │ ├── reference_struct_reference_namespace.rs │ │ │ │ ├── reference_struct_reference_type.rs │ │ │ │ ├── reference_struct_sys_filter.rs │ │ │ │ ├── reference_struct_sys_reference_namespace.rs │ │ │ │ ├── reference_struct_sys_reference_type.rs │ │ │ │ ├── rustfmt_25.rs │ │ │ │ ├── sort.rs │ │ │ │ ├── struct_arch_a.rs │ │ │ │ ├── struct_arch_a_sys.rs │ │ │ │ ├── struct_arch_w.rs │ │ │ │ ├── struct_arch_w_sys.rs │ │ │ │ ├── struct_cpp_sys.rs │ │ │ │ ├── struct_cpp_win.rs │ │ │ │ ├── struct_disambiguate.rs │ │ │ │ ├── struct_sys.rs │ │ │ │ ├── struct_win.rs │ │ │ │ ├── struct_with_cpp_interface.rs │ │ │ │ ├── struct_with_cpp_interface_sys.rs │ │ │ │ ├── struct_with_generic.rs │ │ │ │ ├── window_long_get_a.rs │ │ │ │ ├── window_long_get_a_sys.rs │ │ │ │ ├── window_long_get_w.rs │ │ │ │ ├── window_long_get_w_sys.rs │ │ │ │ ├── window_long_set_a.rs │ │ │ │ ├── window_long_set_a_sys.rs │ │ │ │ ├── window_long_set_w.rs │ │ │ │ └── window_long_set_w_sys.rs │ │ │ └── tests │ │ │ │ ├── bool.rs │ │ │ │ ├── delegate_cpp_ref.rs │ │ │ │ ├── delegate_param.rs │ │ │ │ ├── deps.rs │ │ │ │ ├── panic.rs │ │ │ │ └── ref_params.rs │ │ ├── collections │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── empty.rs │ │ │ │ ├── stock_iterable.rs │ │ │ │ ├── stock_map_view.rs │ │ │ │ ├── stock_vector_view.rs │ │ │ │ └── string_map.rs │ │ ├── core │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── array.rs │ │ │ │ ├── error.rs │ │ │ │ ├── guid.rs │ │ │ │ ├── hresult.rs │ │ │ │ ├── ref.rs │ │ │ │ └── unknown.rs │ │ ├── future │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── agile.rs │ │ │ │ ├── async_info.rs │ │ │ │ ├── completed_finished.rs │ │ │ │ ├── completed_get.rs │ │ │ │ ├── completed_once.rs │ │ │ │ ├── completed_started.rs │ │ │ │ ├── dropped.rs │ │ │ │ ├── error.rs │ │ │ │ ├── futures.rs │ │ │ │ ├── progress.rs │ │ │ │ ├── started.rs │ │ │ │ └── when.rs │ │ ├── implement │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── agile.rs │ │ │ │ ├── as_interface_param.rs │ │ │ │ ├── buffer.rs │ │ │ │ ├── class_factory.rs │ │ │ │ ├── com.rs │ │ │ │ ├── com_chain.rs │ │ │ │ ├── data_object.rs │ │ │ │ ├── drop_target.rs │ │ │ │ ├── dual.rs │ │ │ │ ├── error.rs │ │ │ │ ├── from_raw_borrowed.rs │ │ │ │ ├── from_raw_borrowed_winrt.rs │ │ │ │ ├── generic_default.rs │ │ │ │ ├── generic_generic.rs │ │ │ │ ├── generic_primitive.rs │ │ │ │ ├── generic_stringable.rs │ │ │ │ ├── identity.rs │ │ │ │ ├── identity_from.rs │ │ │ │ ├── into_impl.rs │ │ │ │ ├── map.rs │ │ │ │ ├── no_std.rs │ │ │ │ ├── properties.rs │ │ │ │ ├── query.rs │ │ │ │ ├── trust_level.rs │ │ │ │ └── vector.rs │ │ ├── implement_core │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── com_chain.rs │ │ │ │ ├── com_object.rs │ │ │ │ ├── lib.rs │ │ │ │ └── static_com_object.rs │ │ ├── interface │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── com.rs │ │ │ │ ├── com_from_existing.rs │ │ │ │ ├── no_std.rs │ │ │ │ ├── no_use.rs │ │ │ │ ├── non_com_existing.rs │ │ │ │ ├── non_com_new.rs │ │ │ │ └── result.rs │ │ ├── interface_core │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── asterisk_use.rs │ │ │ │ ├── deref.rs │ │ │ │ ├── no_use.rs │ │ │ │ ├── ref.rs │ │ │ │ ├── ref_ok.rs │ │ │ │ └── result.rs │ │ ├── link │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── link.rs │ │ ├── metadata │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── attribute.rs │ │ │ │ ├── class.rs │ │ │ │ ├── empty.rs │ │ │ │ ├── interface.rs │ │ │ │ ├── reader.rs │ │ │ │ └── struct.rs │ │ ├── numerics │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── matrix3x2.rs │ │ │ │ └── numerics.rs │ │ ├── registry │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── access.rs │ │ │ │ ├── bad_string.rs │ │ │ │ ├── bytes.rs │ │ │ │ ├── hash.rs │ │ │ │ ├── hstring.rs │ │ │ │ ├── interop.rs │ │ │ │ ├── keys.rs │ │ │ │ ├── raw.rs │ │ │ │ ├── read_write.rs │ │ │ │ ├── rename.rs │ │ │ │ ├── string.rs │ │ │ │ ├── transaction.rs │ │ │ │ ├── u32.rs │ │ │ │ ├── u64.rs │ │ │ │ ├── value.rs │ │ │ │ ├── values.rs │ │ │ │ └── volatile.rs │ │ ├── result │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── error.rs │ │ │ │ ├── hresult.rs │ │ │ │ ├── ntstatus.rs │ │ │ │ └── slim_errors.rs │ │ ├── services │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── service.rs │ │ ├── strings │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── bstr.rs │ │ │ │ ├── hstring.rs │ │ │ │ ├── hstring_builder.rs │ │ │ │ ├── literals.rs │ │ │ │ ├── pcstr.rs │ │ │ │ ├── pcwstr.rs │ │ │ │ ├── pstr.rs │ │ │ │ └── pwstr.rs │ │ ├── sys │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── simple.rs │ │ ├── targets │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── files.rs │ │ │ │ ├── link.rs │ │ │ │ └── symbol.rs │ │ ├── threading │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── pool.rs │ │ └── windows_std │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ └── lib.rs │ │ │ └── tests │ │ │ └── test.rs │ ├── misc │ │ ├── agile │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── tests.rs │ │ ├── agile_reference │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── tests.rs │ │ ├── alternate_success_code │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── test.rs │ │ ├── arch │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── arch_feature │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── array │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── com.rs │ │ │ │ ├── primitive.rs │ │ │ │ └── winrt.rs │ │ ├── bcrypt │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── calling_convention │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── link.rs │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── cfg_generic │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── class_hierarchy │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── tests.rs │ │ ├── component │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ │ ├── bindings.rs │ │ │ │ ├── component.idl │ │ │ │ └── lib.rs │ │ ├── component_client │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ │ ├── bindings.rs │ │ │ │ └── lib.rs │ │ ├── const_fields │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── const_params │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── const_ptrs │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── test.rs │ │ ├── debug │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── tests.rs │ │ ├── deprecated │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── deprecated.rs │ │ ├── dispatch │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── tests.rs │ │ ├── does_not_return │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── enums │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── error │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── std.rs │ │ │ │ ├── test.rs │ │ │ │ └── trim.rs │ │ ├── extensions │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── bool32.rs │ │ │ │ ├── ntstatus.rs │ │ │ │ └── variant_bool.rs │ │ ├── handles │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── legacy.rs │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── interop │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── activate_instance.rs │ │ ├── just_core │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ │ ├── bindings.rs │ │ │ │ └── lib.rs │ │ ├── lib │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── linux │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── core.rs │ │ │ │ └── result.rs │ │ ├── literals │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── marshal │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── implement.rs │ │ ├── match │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── tests.rs │ │ ├── msrv │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── no_core │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ │ ├── bindings.rs │ │ │ │ └── lib.rs │ │ ├── no_std │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── no_use │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── test.rs │ │ ├── not_dll │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── package │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── test.rs │ │ ├── query_signature │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── test.rs │ │ ├── readme │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── registry_default │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── test.rs │ │ ├── reserved │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── resources │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── return_handle │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── win.rs │ │ ├── return_struct │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── win.rs │ │ ├── standalone │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── b_arch.rs │ │ │ │ ├── b_arch_dependencies.rs │ │ │ │ ├── b_bstr.rs │ │ │ │ ├── b_calendar.rs │ │ │ │ ├── b_constant_types.rs │ │ │ │ ├── b_depends.rs │ │ │ │ ├── b_enumeration.rs │ │ │ │ ├── b_enumerator.rs │ │ │ │ ├── b_guid.rs │ │ │ │ ├── b_hresult.rs │ │ │ │ ├── b_hstring.rs │ │ │ │ ├── b_include_me.rs │ │ │ │ ├── b_inspectable.rs │ │ │ │ ├── b_nested.rs │ │ │ │ ├── b_none.rs │ │ │ │ ├── b_overloads.rs │ │ │ │ ├── b_pcstr.rs │ │ │ │ ├── b_pcwstr.rs │ │ │ │ ├── b_prepend.rs │ │ │ │ ├── b_pstr.rs │ │ │ │ ├── b_pwstr.rs │ │ │ │ ├── b_std.rs │ │ │ │ ├── b_stringable.rs │ │ │ │ ├── b_test.rs │ │ │ │ ├── b_unknown.rs │ │ │ │ ├── b_uri.rs │ │ │ │ ├── b_variant.rs │ │ │ │ ├── b_vtbl_0.rs │ │ │ │ ├── b_vtbl_1.rs │ │ │ │ ├── b_vtbl_2.rs │ │ │ │ ├── b_vtbl_3.rs │ │ │ │ ├── b_vtbl_4.rs │ │ │ │ ├── b_win_enumerator.rs │ │ │ │ └── lib.rs │ │ ├── string_param │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── pwstr.rs │ │ ├── struct_size │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── struct_size.rs │ │ ├── structs │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── bstr.rs │ │ │ │ ├── propertykey.rs │ │ │ │ └── winrt.rs │ │ ├── unions │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── variant │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── tests.rs │ │ ├── wdk │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── sys.rs │ │ │ │ └── win.rs │ │ ├── weak │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ └── weak.rs │ │ ├── weak_ref │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── count.rs │ │ │ │ └── race.rs │ │ ├── win32 │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── hresult.rs │ │ │ │ ├── win32.rs │ │ │ │ └── winsock.rs │ │ ├── win32_arrays │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── tests │ │ │ │ ├── dxgi_adapter_desc1.rs │ │ │ │ ├── fixed.rs │ │ │ │ ├── ipv6_address_ex.rs │ │ │ │ ├── multi_byte.rs │ │ │ │ ├── nccalcsize_params.rs │ │ │ │ ├── shared_size.rs │ │ │ │ └── xmllite.rs │ │ └── window_long │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ └── lib.rs │ │ │ └── tests │ │ │ ├── sys.rs │ │ │ └── win.rs │ └── winrt │ │ ├── activation │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── metadata.idl │ │ ├── activation_client │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ └── lib.rs │ │ ├── collection_interop │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── src │ │ │ ├── bindings.rs │ │ │ ├── interop.cpp │ │ │ ├── lib.rs │ │ │ └── test.idl │ │ └── tests │ │ │ └── test.rs │ │ ├── composable │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── metadata.idl │ │ ├── composable_client │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── interop.cpp │ │ │ └── lib.rs │ │ ├── constructors │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── metadata.idl │ │ ├── constructors_client │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── interop.cpp │ │ │ └── lib.rs │ │ ├── event_core │ │ ├── Cargo.toml │ │ ├── src │ │ │ └── lib.rs │ │ └── tests │ │ │ └── tests.rs │ │ ├── events │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── metadata.idl │ │ ├── events_client │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ └── lib.rs │ │ ├── noexcept │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── src │ │ │ ├── bindings.rs │ │ │ ├── interop.cpp │ │ │ ├── lib.rs │ │ │ └── test.idl │ │ └── tests │ │ │ └── test.rs │ │ ├── old │ │ ├── Cargo.toml │ │ ├── src │ │ │ └── lib.rs │ │ └── tests │ │ │ ├── async.rs │ │ │ ├── cast.rs │ │ │ ├── collections.rs │ │ │ ├── collisions.rs │ │ │ ├── composition.rs │ │ │ ├── delegates.rs │ │ │ ├── enum.rs │ │ │ ├── error.rs │ │ │ ├── generic_guids.rs │ │ │ ├── guid.rs │ │ │ ├── interface.rs │ │ │ ├── namespace.rs │ │ │ ├── object.rs │ │ │ ├── send_sync.rs │ │ │ ├── static_class.rs │ │ │ ├── uri.rs │ │ │ └── xml.rs │ │ ├── overloads │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── metadata.idl │ │ ├── overloads_client │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ └── lib.rs │ │ ├── ref_params │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── src │ │ │ ├── bindings.rs │ │ │ ├── interop.cpp │ │ │ ├── lib.rs │ │ │ └── test.idl │ │ └── tests │ │ │ └── test.rs │ │ ├── reference │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── metadata.idl │ │ ├── reference_client │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ └── lib.rs │ │ ├── reference_custom │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── test.idl │ │ ├── reference_float │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── metadata.idl │ │ ├── reference_no_deps │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── test.idl │ │ ├── reference_no_windows │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── test.idl │ │ └── reference_windows │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ ├── bindings.rs │ │ ├── lib.rs │ │ └── test.idl └── tools │ ├── bindgen │ ├── Cargo.toml │ └── src │ │ └── main.rs │ ├── bindings │ ├── Cargo.toml │ └── src │ │ ├── collections.txt │ │ ├── core.txt │ │ ├── core_com.txt │ │ ├── future.txt │ │ ├── future_impl.txt │ │ ├── main.rs │ │ ├── metadata.txt │ │ ├── numerics.txt │ │ ├── registry.txt │ │ ├── result.txt │ │ ├── services.txt │ │ ├── strings.txt │ │ ├── sys.txt │ │ ├── threading.txt │ │ ├── version.txt │ │ └── windows.txt │ ├── gnu │ ├── Cargo.toml │ ├── readme.md │ └── src │ │ └── main.rs │ ├── helpers │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── license │ ├── Cargo.toml │ └── src │ │ └── main.rs │ ├── merge │ ├── Cargo.toml │ └── src │ │ └── main.rs │ ├── msvc │ ├── Cargo.toml │ ├── readme.md │ └── src │ │ └── main.rs │ ├── standalone │ ├── Cargo.toml │ └── src │ │ └── main.rs │ ├── test_all │ ├── Cargo.toml │ └── src │ │ └── main.rs │ ├── workspace │ ├── Cargo.toml │ └── src │ │ └── main.rs │ └── yml │ ├── Cargo.toml │ └── src │ ├── clippy.rs │ ├── main.rs │ ├── msrv.rs │ ├── no_default_features.rs │ └── test.rs ├── docs ├── code_of_conduct.md ├── contributing.md ├── debugger_visualizer.md ├── publish.cmd ├── readme.md └── security.md ├── license-apache-2.0 ├── license-mit ├── rustfmt.toml └── web ├── book ├── book.toml ├── docs │ ├── .nojekyll │ ├── 404.html │ ├── CNAME │ ├── FontAwesome │ │ ├── css │ │ │ └── font-awesome.css │ │ └── fonts │ │ │ ├── FontAwesome.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── ayu-highlight.css │ ├── book.js │ ├── clipboard.min.js │ ├── css │ │ ├── chrome.css │ │ ├── general.css │ │ ├── print.css │ │ └── variables.css │ ├── elasticlunr.min.js │ ├── favicon.svg │ ├── fonts │ │ ├── OPEN-SANS-LICENSE.txt │ │ ├── SOURCE-CODE-PRO-LICENSE.txt │ │ ├── fonts.css │ │ ├── open-sans-v17-all-charsets-300.woff2 │ │ ├── open-sans-v17-all-charsets-300italic.woff2 │ │ ├── open-sans-v17-all-charsets-600.woff2 │ │ ├── open-sans-v17-all-charsets-600italic.woff2 │ │ ├── open-sans-v17-all-charsets-700.woff2 │ │ ├── open-sans-v17-all-charsets-700italic.woff2 │ │ ├── open-sans-v17-all-charsets-800.woff2 │ │ ├── open-sans-v17-all-charsets-800italic.woff2 │ │ ├── open-sans-v17-all-charsets-italic.woff2 │ │ ├── open-sans-v17-all-charsets-regular.woff2 │ │ └── source-code-pro-v11-all-charsets-500.woff2 │ ├── highlight.css │ ├── highlight.js │ ├── image.jpg │ ├── index.html │ ├── mark.min.js │ ├── print.html │ ├── rust-getting-started │ │ ├── calling-your-first-com-api.html │ │ ├── calling-your-first-windows-api.html │ │ ├── calling-your-first-windows-sys-api.html │ │ ├── calling-your-first-winrt-api.html │ │ ├── creating-your-first-dll.html │ │ ├── how-are-crates-built.html │ │ ├── how-to-find-api.html │ │ ├── how-to-implement-com-interface.html │ │ ├── how-to-implement-winrt-collection.html │ │ ├── how-to-query-for-com-interface.html │ │ ├── implement-win32-api.html │ │ ├── index.html │ │ ├── standalone-code-generation.html │ │ ├── string-tutorial.html │ │ ├── understanding-windows-targets.html │ │ ├── what-apis-are-included.html │ │ ├── where-are-the-macros.html │ │ └── windows-or-windows-sys.html │ ├── searcher.js │ ├── searchindex.js │ ├── toc.html │ ├── toc.js │ └── tomorrow-night.css ├── readme.md ├── src │ ├── 404.html │ ├── SUMMARY.md │ ├── image.jpg │ ├── readme.md │ └── rust-getting-started │ │ ├── calling-your-first-com-api.md │ │ ├── calling-your-first-windows-api.md │ │ ├── calling-your-first-windows-sys-api.md │ │ ├── calling-your-first-winrt-api.md │ │ ├── creating-your-first-dll.md │ │ ├── how-are-crates-built.md │ │ ├── how-to-find-api.md │ │ ├── how-to-implement-com-interface.md │ │ ├── how-to-implement-winrt-collection.md │ │ ├── how-to-query-for-com-interface.md │ │ ├── implement-win32-api.md │ │ ├── readme.md │ │ ├── standalone-code-generation.md │ │ ├── string-tutorial.md │ │ ├── understanding-windows-targets.md │ │ ├── what-apis-are-included.md │ │ ├── where-are-the-macros.md │ │ └── windows-or-windows-sys.md └── theme │ ├── favicon.svg │ └── head.hbs ├── features ├── .browserslistrc ├── .env ├── .gitignore ├── .nsprc ├── .prettierrc ├── .vscode │ └── settings.json ├── eslint.config.js ├── package-lock.json ├── package.json ├── public │ ├── index.html │ ├── robots.txt │ └── static │ │ ├── manifest.json │ │ └── media │ │ ├── favicon.ico │ │ ├── logo192.png │ │ └── logo512.png ├── src │ ├── app.tsx │ ├── components │ │ ├── featurelist.tsx │ │ └── path.tsx │ ├── index.tsx │ ├── react-app-env.d.ts │ └── worker │ │ ├── search.ts │ │ ├── search_utils.ts │ │ ├── search_v1.ts │ │ ├── search_v2.ts │ │ └── worker.ts ├── tsconfig.json └── webpack.config.cjs └── static └── index.html /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/clippy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/clippy.yml -------------------------------------------------------------------------------- /.github/workflows/cross.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/cross.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/fmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/fmt.yml -------------------------------------------------------------------------------- /.github/workflows/gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/gen.yml -------------------------------------------------------------------------------- /.github/workflows/lib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/lib.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/miri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/miri.yml -------------------------------------------------------------------------------- /.github/workflows/msrv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/msrv.yml -------------------------------------------------------------------------------- /.github/workflows/no-default-features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/no-default-features.yml -------------------------------------------------------------------------------- /.github/workflows/no_std.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/no_std.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/slim_errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/slim_errors.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.github/workflows/web.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/bindgen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/bindgen/default/Windows.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/default/Windows.winmd -------------------------------------------------------------------------------- /crates/libs/bindgen/default/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/default/readme.md -------------------------------------------------------------------------------- /crates/libs/bindgen/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/bindgen/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/license-mit -------------------------------------------------------------------------------- /crates/libs/bindgen/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/readme.md -------------------------------------------------------------------------------- /crates/libs/bindgen/src/config/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/config/cfg.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/config/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/config/format.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/config/mod.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/config/names.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/config/names.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/config/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/config/value.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/derive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/derive.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/derive_writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/derive_writer.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/filter.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/guid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/guid.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/index.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/io.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/libraries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/libraries.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/method_names.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/method_names.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/param.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/param.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/references.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/signature.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/signature.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/tables/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/tables/field.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/tables/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/tables/mod.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/tokens/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/tokens/mod.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/tokens/runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/tokens/runtime.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/type_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/type_map.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/type_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/type_name.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/type_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/type_tree.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/types/class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/types/class.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/types/cpp_enum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/types/cpp_enum.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/types/cpp_fn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/types/cpp_fn.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/types/delegate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/types/delegate.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/types/enum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/types/enum.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/types/method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/types/method.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/types/mod.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/types/struct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/types/struct.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/value.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/warnings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/warnings.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/winmd/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/winmd/bindings.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/winmd/blob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/winmd/blob.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/winmd/codes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/winmd/codes.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/winmd/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/winmd/file.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/winmd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/winmd/mod.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/winmd/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/winmd/reader.rs -------------------------------------------------------------------------------- /crates/libs/bindgen/src/winmd/row.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/bindgen/src/winmd/row.rs -------------------------------------------------------------------------------- /crates/libs/collections/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/collections/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/collections/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/collections/license-mit -------------------------------------------------------------------------------- /crates/libs/collections/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/collections/readme.md -------------------------------------------------------------------------------- /crates/libs/collections/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/collections/src/bindings.rs -------------------------------------------------------------------------------- /crates/libs/collections/src/iterable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/collections/src/iterable.rs -------------------------------------------------------------------------------- /crates/libs/collections/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/collections/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/collections/src/map_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/collections/src/map_view.rs -------------------------------------------------------------------------------- /crates/libs/core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/core/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/core/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/license-mit -------------------------------------------------------------------------------- /crates/libs/core/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/readme.md -------------------------------------------------------------------------------- /crates/libs/core/src/agile_reference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/agile_reference.rs -------------------------------------------------------------------------------- /crates/libs/core/src/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/array.rs -------------------------------------------------------------------------------- /crates/libs/core/src/as_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/as_impl.rs -------------------------------------------------------------------------------- /crates/libs/core/src/com_object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/com_object.rs -------------------------------------------------------------------------------- /crates/libs/core/src/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/event.rs -------------------------------------------------------------------------------- /crates/libs/core/src/guid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/guid.rs -------------------------------------------------------------------------------- /crates/libs/core/src/handles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/handles.rs -------------------------------------------------------------------------------- /crates/libs/core/src/imp/array_proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/imp/array_proxy.rs -------------------------------------------------------------------------------- /crates/libs/core/src/imp/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/imp/bindings.rs -------------------------------------------------------------------------------- /crates/libs/core/src/imp/can_into.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/imp/can_into.rs -------------------------------------------------------------------------------- /crates/libs/core/src/imp/com_bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/imp/com_bindings.rs -------------------------------------------------------------------------------- /crates/libs/core/src/imp/factory_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/imp/factory_cache.rs -------------------------------------------------------------------------------- /crates/libs/core/src/imp/marshaler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/imp/marshaler.rs -------------------------------------------------------------------------------- /crates/libs/core/src/imp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/imp/mod.rs -------------------------------------------------------------------------------- /crates/libs/core/src/imp/ref_count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/imp/ref_count.rs -------------------------------------------------------------------------------- /crates/libs/core/src/imp/sha1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/imp/sha1.rs -------------------------------------------------------------------------------- /crates/libs/core/src/imp/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/imp/windows.rs -------------------------------------------------------------------------------- /crates/libs/core/src/inspectable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/inspectable.rs -------------------------------------------------------------------------------- /crates/libs/core/src/interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/interface.rs -------------------------------------------------------------------------------- /crates/libs/core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/core/src/out_param.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/out_param.rs -------------------------------------------------------------------------------- /crates/libs/core/src/out_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/out_ref.rs -------------------------------------------------------------------------------- /crates/libs/core/src/param.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/param.rs -------------------------------------------------------------------------------- /crates/libs/core/src/param_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/param_value.rs -------------------------------------------------------------------------------- /crates/libs/core/src/ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/ref.rs -------------------------------------------------------------------------------- /crates/libs/core/src/runtime_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/runtime_name.rs -------------------------------------------------------------------------------- /crates/libs/core/src/runtime_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/runtime_type.rs -------------------------------------------------------------------------------- /crates/libs/core/src/scoped_interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/scoped_interface.rs -------------------------------------------------------------------------------- /crates/libs/core/src/type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/type.rs -------------------------------------------------------------------------------- /crates/libs/core/src/unknown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/unknown.rs -------------------------------------------------------------------------------- /crates/libs/core/src/weak.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/weak.rs -------------------------------------------------------------------------------- /crates/libs/core/src/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/src/windows.rs -------------------------------------------------------------------------------- /crates/libs/core/windows-core.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/core/windows-core.natvis -------------------------------------------------------------------------------- /crates/libs/cppwinrt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/cppwinrt/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/cppwinrt/cppwinrt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/cppwinrt/cppwinrt.exe -------------------------------------------------------------------------------- /crates/libs/cppwinrt/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/cppwinrt/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/cppwinrt/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/cppwinrt/license-mit -------------------------------------------------------------------------------- /crates/libs/cppwinrt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/cppwinrt/readme.md -------------------------------------------------------------------------------- /crates/libs/cppwinrt/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/cppwinrt/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/future/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/future/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/future/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/license-mit -------------------------------------------------------------------------------- /crates/libs/future/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/readme.md -------------------------------------------------------------------------------- /crates/libs/future/src/async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/src/async.rs -------------------------------------------------------------------------------- /crates/libs/future/src/async_ready.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/src/async_ready.rs -------------------------------------------------------------------------------- /crates/libs/future/src/async_spawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/src/async_spawn.rs -------------------------------------------------------------------------------- /crates/libs/future/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/src/bindings.rs -------------------------------------------------------------------------------- /crates/libs/future/src/bindings_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/src/bindings_impl.rs -------------------------------------------------------------------------------- /crates/libs/future/src/future.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/src/future.rs -------------------------------------------------------------------------------- /crates/libs/future/src/join.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/src/join.rs -------------------------------------------------------------------------------- /crates/libs/future/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/future/src/waiter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/src/waiter.rs -------------------------------------------------------------------------------- /crates/libs/future/src/when.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/future/src/when.rs -------------------------------------------------------------------------------- /crates/libs/implement/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/implement/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/implement/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/implement/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/implement/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/implement/license-mit -------------------------------------------------------------------------------- /crates/libs/implement/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/implement/readme.md -------------------------------------------------------------------------------- /crates/libs/implement/src/gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/implement/src/gen.rs -------------------------------------------------------------------------------- /crates/libs/implement/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/implement/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/implement/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/implement/src/tests.rs -------------------------------------------------------------------------------- /crates/libs/interface/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/interface/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/interface/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/interface/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/interface/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/interface/license-mit -------------------------------------------------------------------------------- /crates/libs/interface/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/interface/readme.md -------------------------------------------------------------------------------- /crates/libs/interface/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/interface/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/link/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/link/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/link/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/link/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/link/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/link/license-mit -------------------------------------------------------------------------------- /crates/libs/link/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/link/readme.md -------------------------------------------------------------------------------- /crates/libs/link/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/link/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/metadata/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/metadata/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/metadata/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/license-mit -------------------------------------------------------------------------------- /crates/libs/metadata/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/readme.md -------------------------------------------------------------------------------- /crates/libs/metadata/src/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/attributes.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/bindings.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/reader/blob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/reader/blob.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/reader/codes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/reader/codes.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/reader/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/reader/mod.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/reader/row.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/reader/row.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/signature.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/signature.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/ty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/ty.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/type_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/type_name.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/value.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/writer/id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/writer/id.rs -------------------------------------------------------------------------------- /crates/libs/metadata/src/writer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/metadata/src/writer/mod.rs -------------------------------------------------------------------------------- /crates/libs/numerics/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/numerics/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/numerics/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/numerics/license-mit -------------------------------------------------------------------------------- /crates/libs/numerics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/numerics/readme.md -------------------------------------------------------------------------------- /crates/libs/numerics/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/numerics/src/bindings.rs -------------------------------------------------------------------------------- /crates/libs/numerics/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/numerics/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/numerics/src/matrix3x2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/numerics/src/matrix3x2.rs -------------------------------------------------------------------------------- /crates/libs/numerics/src/matrix4x4.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/numerics/src/matrix4x4.rs -------------------------------------------------------------------------------- /crates/libs/numerics/src/vector2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/numerics/src/vector2.rs -------------------------------------------------------------------------------- /crates/libs/numerics/src/vector3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/numerics/src/vector3.rs -------------------------------------------------------------------------------- /crates/libs/numerics/src/vector4.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/numerics/src/vector4.rs -------------------------------------------------------------------------------- /crates/libs/registry/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/registry/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/registry/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/registry/license-mit -------------------------------------------------------------------------------- /crates/libs/registry/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/registry/readme.md -------------------------------------------------------------------------------- /crates/libs/registry/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/registry/src/bindings.rs -------------------------------------------------------------------------------- /crates/libs/registry/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/registry/src/data.rs -------------------------------------------------------------------------------- /crates/libs/registry/src/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/registry/src/key.rs -------------------------------------------------------------------------------- /crates/libs/registry/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/registry/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/registry/src/pcwstr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/registry/src/pcwstr.rs -------------------------------------------------------------------------------- /crates/libs/registry/src/type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/registry/src/type.rs -------------------------------------------------------------------------------- /crates/libs/registry/src/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/registry/src/value.rs -------------------------------------------------------------------------------- /crates/libs/result/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/result/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/result/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/license-mit -------------------------------------------------------------------------------- /crates/libs/result/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/readme.md -------------------------------------------------------------------------------- /crates/libs/result/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/bindings.rs -------------------------------------------------------------------------------- /crates/libs/result/src/bool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/bool.rs -------------------------------------------------------------------------------- /crates/libs/result/src/bstr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/bstr.rs -------------------------------------------------------------------------------- /crates/libs/result/src/com.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/com.rs -------------------------------------------------------------------------------- /crates/libs/result/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/error.rs -------------------------------------------------------------------------------- /crates/libs/result/src/hresult.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/hresult.rs -------------------------------------------------------------------------------- /crates/libs/result/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/result/src/ntstatus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/ntstatus.rs -------------------------------------------------------------------------------- /crates/libs/result/src/rpc_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/rpc_status.rs -------------------------------------------------------------------------------- /crates/libs/result/src/strings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/strings.rs -------------------------------------------------------------------------------- /crates/libs/result/src/win32_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/result/src/win32_error.rs -------------------------------------------------------------------------------- /crates/libs/services/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/services/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/services/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/services/license-mit -------------------------------------------------------------------------------- /crates/libs/services/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/services/readme.md -------------------------------------------------------------------------------- /crates/libs/services/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/services/src/bindings.rs -------------------------------------------------------------------------------- /crates/libs/services/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/services/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/strings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/strings/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/strings/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/license-mit -------------------------------------------------------------------------------- /crates/libs/strings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/readme.md -------------------------------------------------------------------------------- /crates/libs/strings/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/bindings.rs -------------------------------------------------------------------------------- /crates/libs/strings/src/bstr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/bstr.rs -------------------------------------------------------------------------------- /crates/libs/strings/src/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/decode.rs -------------------------------------------------------------------------------- /crates/libs/strings/src/hstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/hstring.rs -------------------------------------------------------------------------------- /crates/libs/strings/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/strings/src/literals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/literals.rs -------------------------------------------------------------------------------- /crates/libs/strings/src/pcstr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/pcstr.rs -------------------------------------------------------------------------------- /crates/libs/strings/src/pcwstr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/pcwstr.rs -------------------------------------------------------------------------------- /crates/libs/strings/src/pstr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/pstr.rs -------------------------------------------------------------------------------- /crates/libs/strings/src/pwstr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/pwstr.rs -------------------------------------------------------------------------------- /crates/libs/strings/src/ref_count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/strings/src/ref_count.rs -------------------------------------------------------------------------------- /crates/libs/sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/sys/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/sys/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/sys/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/sys/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/sys/license-mit -------------------------------------------------------------------------------- /crates/libs/sys/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/sys/readme.md -------------------------------------------------------------------------------- /crates/libs/sys/rustfmt.toml: -------------------------------------------------------------------------------- 1 | newline_style = "Unix" 2 | max_width = 800 3 | -------------------------------------------------------------------------------- /crates/libs/sys/src/Windows/Wdk/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/sys/src/Windows/Wdk/mod.rs -------------------------------------------------------------------------------- /crates/libs/sys/src/Windows/Win32/Devices/Enumeration/mod.rs: -------------------------------------------------------------------------------- 1 | #[cfg(feature = "Win32_Devices_Enumeration_Pnp")] 2 | pub mod Pnp; 3 | -------------------------------------------------------------------------------- /crates/libs/sys/src/Windows/Win32/System/HostCompute/mod.rs: -------------------------------------------------------------------------------- 1 | pub type HCS_CALLBACK = *mut core::ffi::c_void; 2 | -------------------------------------------------------------------------------- /crates/libs/sys/src/Windows/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/sys/src/Windows/mod.rs -------------------------------------------------------------------------------- /crates/libs/sys/src/core/literals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/sys/src/core/literals.rs -------------------------------------------------------------------------------- /crates/libs/sys/src/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/sys/src/core/mod.rs -------------------------------------------------------------------------------- /crates/libs/sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/sys/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/targets/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/targets/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/targets/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/targets/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/targets/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/targets/license-mit -------------------------------------------------------------------------------- /crates/libs/targets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/targets/readme.md -------------------------------------------------------------------------------- /crates/libs/targets/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/targets/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/threading/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/threading/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/threading/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/threading/license-mit -------------------------------------------------------------------------------- /crates/libs/threading/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/threading/readme.md -------------------------------------------------------------------------------- /crates/libs/threading/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/threading/src/bindings.rs -------------------------------------------------------------------------------- /crates/libs/threading/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/threading/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/threading/src/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/threading/src/pool.rs -------------------------------------------------------------------------------- /crates/libs/version/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/version/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/version/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/version/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/version/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/version/license-mit -------------------------------------------------------------------------------- /crates/libs/version/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/version/readme.md -------------------------------------------------------------------------------- /crates/libs/version/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/version/src/bindings.rs -------------------------------------------------------------------------------- /crates/libs/version/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/version/src/lib.rs -------------------------------------------------------------------------------- /crates/libs/windows/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/windows/Cargo.toml -------------------------------------------------------------------------------- /crates/libs/windows/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/windows/features.json -------------------------------------------------------------------------------- /crates/libs/windows/license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/windows/license-apache-2.0 -------------------------------------------------------------------------------- /crates/libs/windows/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/windows/license-mit -------------------------------------------------------------------------------- /crates/libs/windows/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/windows/readme.md -------------------------------------------------------------------------------- /crates/libs/windows/rustfmt.toml: -------------------------------------------------------------------------------- 1 | newline_style = "Unix" 2 | max_width = 800 3 | -------------------------------------------------------------------------------- /crates/libs/windows/src/Windows/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/windows/src/Windows/mod.rs -------------------------------------------------------------------------------- /crates/libs/windows/src/extensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/windows/src/extensions.rs -------------------------------------------------------------------------------- /crates/libs/windows/src/extensions/Foundation.rs: -------------------------------------------------------------------------------- 1 | pub mod TimeSpan; 2 | -------------------------------------------------------------------------------- /crates/libs/windows/src/extensions/Win32/Foundation.rs: -------------------------------------------------------------------------------- 1 | pub mod VARIANT_BOOL; 2 | -------------------------------------------------------------------------------- /crates/libs/windows/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/libs/windows/src/lib.rs -------------------------------------------------------------------------------- /crates/samples/csharp/client/client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/csharp/client/client.cs -------------------------------------------------------------------------------- /crates/samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/readme.md -------------------------------------------------------------------------------- /crates/samples/services/time/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/services/time/build.rs -------------------------------------------------------------------------------- /crates/samples/windows/bits/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/bits/Cargo.toml -------------------------------------------------------------------------------- /crates/samples/windows/dcomp/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/dcomp/image.jpg -------------------------------------------------------------------------------- /crates/samples/windows/dcomp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/dcomp/readme.md -------------------------------------------------------------------------------- /crates/samples/windows/ocr/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/ocr/Cargo.toml -------------------------------------------------------------------------------- /crates/samples/windows/ocr/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/ocr/message.png -------------------------------------------------------------------------------- /crates/samples/windows/ocr/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/ocr/src/main.rs -------------------------------------------------------------------------------- /crates/samples/windows/overlapped/message.txt: -------------------------------------------------------------------------------- 1 | He said "Hello world!" and that's all. -------------------------------------------------------------------------------- /crates/samples/windows/rss/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/rss/Cargo.toml -------------------------------------------------------------------------------- /crates/samples/windows/rss/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/rss/src/main.rs -------------------------------------------------------------------------------- /crates/samples/windows/wmi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/wmi/Cargo.toml -------------------------------------------------------------------------------- /crates/samples/windows/wmi/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/wmi/src/main.rs -------------------------------------------------------------------------------- /crates/samples/windows/xml/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/xml/Cargo.toml -------------------------------------------------------------------------------- /crates/samples/windows/xml/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/samples/windows/xml/src/main.rs -------------------------------------------------------------------------------- /crates/targets/aarch64_gnullvm/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /crates/targets/aarch64_msvc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/aarch64_msvc/Cargo.toml -------------------------------------------------------------------------------- /crates/targets/aarch64_msvc/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/aarch64_msvc/build.rs -------------------------------------------------------------------------------- /crates/targets/aarch64_msvc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/aarch64_msvc/readme.md -------------------------------------------------------------------------------- /crates/targets/aarch64_msvc/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/aclui.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/aclui.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/activeds.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/activeds.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/advapi32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/advapi32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/advpack.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/advpack.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/amsi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/amsi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-appmodel-runtime-l1-1-6.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall GetPackageGraphRevisionId() {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-core-apiquery-l2-1-0.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall IsApiSetImplemented(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-core-backgroundtask-l1-1-0.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall RaiseCustomSystemEventTrigger(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-core-errorhandling-l1-1-3.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall TerminateProcessOnMemoryExhaustion(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-core-sysinfo-l1-2-0.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall GetOsSafeBootMode(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-core-sysinfo-l1-2-6.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall GetDeveloperDriveEnablementState() {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-core-winrt-robuffer-l1-1-0.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall RoGetBufferMarshaler(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-dx-d3dkmt-l1-1-0.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall GdiEntry13() {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-dx-d3dkmt-l1-1-6.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall D3DKMTEnumAdapters3(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-security-isolatedcontainer-l1-1-0.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall IsProcessInIsolatedContainer(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/api-ms-win-shcore-scaling-l1-1-2.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall GetDpiForShellUIComponent(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/apphelp.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/apphelp.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/authz.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/authz.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/avicap32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/avicap32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/avifil32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/avifil32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/avrt.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/avrt.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/bcp47mrm.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/bcp47mrm.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/bcrypt.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/bcrypt.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/bthprops.cpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/bthprops.cpl.c -------------------------------------------------------------------------------- /crates/targets/baseline/cabinet.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/cabinet.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/certadm.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/certadm.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/cfgmgr32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/cfgmgr32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/chakra.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/chakra.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/cldapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/cldapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/clfs.sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/clfs.sys.c -------------------------------------------------------------------------------- /crates/targets/baseline/clfsw32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/clfsw32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/clusapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/clusapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/comctl32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/comctl32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/comdlg32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/comdlg32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/compstui.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/compstui.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/comsvcs.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/comsvcs.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/credui.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/credui.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/crypt32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/crypt32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/cryptnet.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/cryptnet.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/cryptui.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/cryptui.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/cryptxml.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/cryptxml.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/cscapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/cscapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/d2d1.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/d2d1.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/d3d10.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/d3d10.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/d3d10_1.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/d3d10_1.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/d3d11.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/d3d11.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/d3d12.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/d3d12.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/d3d9.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/d3d9.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/d3dcsx.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/d3dcsx.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/davclnt.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/davclnt.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dbgeng.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dbgeng.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dbghelp.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dbghelp.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dbgmodel.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dbgmodel.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dciman32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dciman32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dcomp.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dcomp.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ddraw.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ddraw.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dflayout.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dflayout.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dhcpcsvc.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dhcpcsvc.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dhcpsapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dhcpsapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dinput8.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dinput8.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/directml.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/directml.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dnsapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dnsapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/drt.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/drt.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/drtprov.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/drtprov.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dsound.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dsound.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dsparse.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dsparse.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dsprop.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dsprop.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dssec.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dssec.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dsuiext.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dsuiext.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dwmapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dwmapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dwrite.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dwrite.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dxcore.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dxcore.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dxgi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dxgi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/dxva2.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/dxva2.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/eappcfg.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/eappcfg.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/eappprxy.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/eappprxy.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/efswrt.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/efswrt.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/elscore.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/elscore.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/esent.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/esent.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/evr.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/evr.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/faultrep.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/faultrep.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/fhsvcctl.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/fhsvcctl.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/fltlib.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/fltlib.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/fltmgr.sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/fltmgr.sys.c -------------------------------------------------------------------------------- /crates/targets/baseline/fontsub.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/fontsub.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/fwpkclnt.sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/fwpkclnt.sys.c -------------------------------------------------------------------------------- /crates/targets/baseline/fwpuclnt.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/fwpuclnt.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/gdi32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/gdi32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/gdiplus.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/gdiplus.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/glu32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/glu32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/gpedit.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/gpedit.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/hal.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/hal.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/hhctrl.ocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/hhctrl.ocx.c -------------------------------------------------------------------------------- /crates/targets/baseline/hid.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/hid.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/hlink.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/hlink.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/hrtfapo.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/hrtfapo.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/httpapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/httpapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/icm32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/icm32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/icmui.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/icmui.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/icu.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/icu.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/icuin.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/icuin.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/icuuc.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/icuuc.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ieframe.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ieframe.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/imagehlp.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/imagehlp.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/imgutil.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/imgutil.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/imm32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/imm32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/iphlpapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/iphlpapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/iscsidsc.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/iscsidsc.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/kernel32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/kernel32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ksecdd.sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ksecdd.sys.c -------------------------------------------------------------------------------- /crates/targets/baseline/ksproxy.ax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ksproxy.ax.c -------------------------------------------------------------------------------- /crates/targets/baseline/ksuser.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ksuser.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ktmw32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ktmw32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/loadperf.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/loadperf.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mapi32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mapi32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mf.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mf.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mfcore.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mfcore.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mfplat.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mfplat.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mfplay.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mfplay.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mfsrcsnk.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mfsrcsnk.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mgmtapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mgmtapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mi.dll.c: -------------------------------------------------------------------------------- 1 | void __cdecl MI_Application_InitializeV1() {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/mmdevapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mmdevapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mpr.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mpr.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mprapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mprapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mqrt.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mqrt.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/msacm32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/msacm32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/msajapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/msajapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mscms.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mscms.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mscoree.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mscoree.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/msdelta.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/msdelta.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/msdmo.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/msdmo.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/msdrm.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/msdrm.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/msi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/msi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/msimg32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/msimg32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mspatcha.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mspatcha.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mspatchc.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mspatchc.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/msports.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/msports.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/msrating.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/msrating.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mssign32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mssign32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mstask.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mstask.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/msvfw32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/msvfw32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mswsock.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/mswsock.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/mtxdm.dll.c: -------------------------------------------------------------------------------- 1 | void __cdecl GetDispenserManager() {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/ncrypt.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ncrypt.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ndfapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ndfapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ndis.sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ndis.sys.c -------------------------------------------------------------------------------- /crates/targets/baseline/netapi32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/netapi32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/netsh.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/netsh.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/netshell.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/netshell.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/newdev.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/newdev.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ninput.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ninput.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/normaliz.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/normaliz.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ntdll.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ntdll.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ntdllk.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ntdllk.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ntdsapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ntdsapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ntlanman.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ntlanman.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ntoskrnl.exe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ntoskrnl.exe.c -------------------------------------------------------------------------------- /crates/targets/baseline/odbc32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/odbc32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/odbcbcp.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/odbcbcp.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/offreg.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/offreg.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ole32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ole32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/oleacc.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/oleacc.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/oleaut32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/oleaut32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/oledlg.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/oledlg.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/opengl32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/opengl32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/opmxbox.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/opmxbox.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/p2p.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/p2p.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/p2pgraph.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/p2pgraph.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/pdh.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/pdh.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/peerdist.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/peerdist.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/powrprof.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/powrprof.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/prntvpt.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/prntvpt.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/propsys.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/propsys.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/psapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/psapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/pshed.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/pshed.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/quartz.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/quartz.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/query.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/query.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/qwave.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/qwave.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/rasapi32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/rasapi32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/rasdlg.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/rasdlg.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/readme.md -------------------------------------------------------------------------------- /crates/targets/baseline/resutils.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/resutils.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/rpcns4.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/rpcns4.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/rpcproxy.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/rpcproxy.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/rpcrt4.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/rpcrt4.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/rstrtmgr.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/rstrtmgr.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/rtm.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/rtm.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/rtutils.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/rtutils.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/rtworkq.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/rtworkq.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/sas.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall SendSAS(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/scarddlg.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/scarddlg.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/schannel.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/schannel.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/sechost.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/sechost.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/secur32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/secur32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/sensapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/sensapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/setupapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/setupapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/sfc.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/sfc.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/shdocvw.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/shdocvw.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/shell32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/shell32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/shlwapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/shlwapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/slc.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/slc.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/slcext.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/slcext.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/slwga.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/slwga.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/snmpapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/snmpapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/spoolss.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/spoolss.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/srclient.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall SRRemoveRestorePoint(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/srpapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/srpapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/sspicli.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/sspicli.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/sti.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/sti.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/t2embed.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/t2embed.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/tapi32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/tapi32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/tbs.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/tbs.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/tdh.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/tdh.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/traffic.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/traffic.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/txfw32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/txfw32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ualapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ualapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/urlmon.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/urlmon.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/user32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/user32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/userenv.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/userenv.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/usp10.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/usp10.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/uxtheme.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/uxtheme.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/verifier.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/verifier.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/version.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/version.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/vertdll.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/vertdll.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/vhfum.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/vhfum.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/virtdisk.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/virtdisk.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/vssapi.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall CreateVssExpressWriterInternal(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/wcmapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wcmapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wdsbp.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wdsbp.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wdsmc.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wdsmc.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wdspxe.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wdspxe.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wdstptc.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wdstptc.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/webauthn.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/webauthn.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wecapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wecapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wer.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wer.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wevtapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wevtapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/winbio.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/winbio.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/windows.ai.machinelearning.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall MLCreateOperatorRegistry(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/windows.networking.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall SetSocketMediaStreamingMode(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/winfax.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/winfax.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/winhttp.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/winhttp.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wininet.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wininet.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/winml.dll.c: -------------------------------------------------------------------------------- 1 | void __stdcall WinMLCreateRuntime(int p0) {} 2 | -------------------------------------------------------------------------------- /crates/targets/baseline/winmm.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/winmm.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/winscard.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/winscard.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/winspool.drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/winspool.drv.c -------------------------------------------------------------------------------- /crates/targets/baseline/wintrust.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wintrust.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/winusb.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/winusb.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wlanapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wlanapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wlanui.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wlanui.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wldap32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wldap32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wldp.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wldp.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wmvcore.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wmvcore.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wnvapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wnvapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wofutil.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wofutil.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/ws2_32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/ws2_32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wscapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wscapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wsclient.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wsclient.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wsdapi.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wsdapi.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wsmsvc.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wsmsvc.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wsnmp32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wsnmp32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/wtsapi32.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/wtsapi32.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/xmllite.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/xmllite.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/xolehlp.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/xolehlp.dll.c -------------------------------------------------------------------------------- /crates/targets/baseline/xpsprint.dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/baseline/xpsprint.dll.c -------------------------------------------------------------------------------- /crates/targets/i686_gnu/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_gnu/Cargo.toml -------------------------------------------------------------------------------- /crates/targets/i686_gnu/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_gnu/build.rs -------------------------------------------------------------------------------- /crates/targets/i686_gnu/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_gnu/license-mit -------------------------------------------------------------------------------- /crates/targets/i686_gnu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_gnu/readme.md -------------------------------------------------------------------------------- /crates/targets/i686_gnu/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /crates/targets/i686_gnullvm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_gnullvm/Cargo.toml -------------------------------------------------------------------------------- /crates/targets/i686_gnullvm/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_gnullvm/build.rs -------------------------------------------------------------------------------- /crates/targets/i686_gnullvm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_gnullvm/readme.md -------------------------------------------------------------------------------- /crates/targets/i686_gnullvm/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /crates/targets/i686_msvc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_msvc/Cargo.toml -------------------------------------------------------------------------------- /crates/targets/i686_msvc/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_msvc/build.rs -------------------------------------------------------------------------------- /crates/targets/i686_msvc/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_msvc/license-mit -------------------------------------------------------------------------------- /crates/targets/i686_msvc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/i686_msvc/readme.md -------------------------------------------------------------------------------- /crates/targets/i686_msvc/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /crates/targets/x86_64_gnu/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/x86_64_gnu/Cargo.toml -------------------------------------------------------------------------------- /crates/targets/x86_64_gnu/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/x86_64_gnu/build.rs -------------------------------------------------------------------------------- /crates/targets/x86_64_gnu/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/x86_64_gnu/license-mit -------------------------------------------------------------------------------- /crates/targets/x86_64_gnu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/x86_64_gnu/readme.md -------------------------------------------------------------------------------- /crates/targets/x86_64_gnu/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /crates/targets/x86_64_gnullvm/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/x86_64_gnullvm/build.rs -------------------------------------------------------------------------------- /crates/targets/x86_64_gnullvm/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /crates/targets/x86_64_msvc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/x86_64_msvc/Cargo.toml -------------------------------------------------------------------------------- /crates/targets/x86_64_msvc/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/x86_64_msvc/build.rs -------------------------------------------------------------------------------- /crates/targets/x86_64_msvc/license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/x86_64_msvc/license-mit -------------------------------------------------------------------------------- /crates/targets/x86_64_msvc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/targets/x86_64_msvc/readme.md -------------------------------------------------------------------------------- /crates/targets/x86_64_msvc/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /crates/tests/libs/bindgen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/bindgen/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/bindgen/src/bool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/bindgen/src/bool.rs -------------------------------------------------------------------------------- /crates/tests/libs/bindgen/src/class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/bindgen/src/class.rs -------------------------------------------------------------------------------- /crates/tests/libs/bindgen/src/deps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/bindgen/src/deps.rs -------------------------------------------------------------------------------- /crates/tests/libs/bindgen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/bindgen/src/lib.rs -------------------------------------------------------------------------------- /crates/tests/libs/bindgen/src/multi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/bindgen/src/multi.rs -------------------------------------------------------------------------------- /crates/tests/libs/bindgen/src/sort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/bindgen/src/sort.rs -------------------------------------------------------------------------------- /crates/tests/libs/collections/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/core/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/core/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/core/tests/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/core/tests/array.rs -------------------------------------------------------------------------------- /crates/tests/libs/core/tests/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/core/tests/error.rs -------------------------------------------------------------------------------- /crates/tests/libs/core/tests/guid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/core/tests/guid.rs -------------------------------------------------------------------------------- /crates/tests/libs/core/tests/ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/core/tests/ref.rs -------------------------------------------------------------------------------- /crates/tests/libs/future/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/future/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/future/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/future/tests/when.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/future/tests/when.rs -------------------------------------------------------------------------------- /crates/tests/libs/implement/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/implement/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/implement/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/interface/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/interface/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/interface/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/interface_core/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/link/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/link/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/link/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/link/tests/link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/link/tests/link.rs -------------------------------------------------------------------------------- /crates/tests/libs/metadata/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/metadata/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/metadata/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/numerics/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/numerics/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/numerics/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/registry/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/registry/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/registry/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/result/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/result/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/result/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/services/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/services/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/services/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/strings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/strings/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/strings/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/sys/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/sys/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/sys/tests/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/sys/tests/simple.rs -------------------------------------------------------------------------------- /crates/tests/libs/targets/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/targets/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/targets/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/threading/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/libs/threading/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/libs/threading/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/libs/windows_std/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/agile/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/agile/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/agile/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/agile/tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/agile/tests/tests.rs -------------------------------------------------------------------------------- /crates/tests/misc/agile_reference/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/alternate_success_code/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/arch/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/arch/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/arch/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/arch/tests/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/arch/tests/sys.rs -------------------------------------------------------------------------------- /crates/tests/misc/arch/tests/win.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/arch/tests/win.rs -------------------------------------------------------------------------------- /crates/tests/misc/arch_feature/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/array/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/array/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/array/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/array/tests/com.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/array/tests/com.rs -------------------------------------------------------------------------------- /crates/tests/misc/array/tests/winrt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/array/tests/winrt.rs -------------------------------------------------------------------------------- /crates/tests/misc/bcrypt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/bcrypt/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/bcrypt/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/bcrypt/tests/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/bcrypt/tests/sys.rs -------------------------------------------------------------------------------- /crates/tests/misc/bcrypt/tests/win.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/bcrypt/tests/win.rs -------------------------------------------------------------------------------- /crates/tests/misc/calling_convention/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/cfg_generic/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/class_hierarchy/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/component/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/component/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/component/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/component/build.rs -------------------------------------------------------------------------------- /crates/tests/misc/component/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/component/src/lib.rs -------------------------------------------------------------------------------- /crates/tests/misc/const_fields/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/const_params/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/const_ptrs/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/debug/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/debug/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/debug/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/debug/tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/debug/tests/tests.rs -------------------------------------------------------------------------------- /crates/tests/misc/deprecated/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/dispatch/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/dispatch/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/dispatch/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/does_not_return/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/enums/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/enums/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/enums/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/enums/tests/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/enums/tests/sys.rs -------------------------------------------------------------------------------- /crates/tests/misc/enums/tests/win.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/enums/tests/win.rs -------------------------------------------------------------------------------- /crates/tests/misc/error/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/error/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/error/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/error/tests/std.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/error/tests/std.rs -------------------------------------------------------------------------------- /crates/tests/misc/error/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/error/tests/test.rs -------------------------------------------------------------------------------- /crates/tests/misc/error/tests/trim.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/error/tests/trim.rs -------------------------------------------------------------------------------- /crates/tests/misc/extensions/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/handles/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/handles/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/handles/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/handles/tests/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/handles/tests/sys.rs -------------------------------------------------------------------------------- /crates/tests/misc/handles/tests/win.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/handles/tests/win.rs -------------------------------------------------------------------------------- /crates/tests/misc/interop/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/interop/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/interop/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/just_core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/just_core/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/just_core/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/just_core/build.rs -------------------------------------------------------------------------------- /crates/tests/misc/just_core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/just_core/src/lib.rs -------------------------------------------------------------------------------- /crates/tests/misc/lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/lib/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/lib/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/lib/tests/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/lib/tests/sys.rs -------------------------------------------------------------------------------- /crates/tests/misc/lib/tests/win.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/lib/tests/win.rs -------------------------------------------------------------------------------- /crates/tests/misc/linux/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/linux/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/linux/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/linux/tests/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/linux/tests/core.rs -------------------------------------------------------------------------------- /crates/tests/misc/literals/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/literals/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/literals/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/marshal/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/marshal/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/marshal/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/match/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/match/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/match/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/match/tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/match/tests/tests.rs -------------------------------------------------------------------------------- /crates/tests/misc/msrv/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/msrv/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/msrv/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/no_core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/no_core/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/no_core/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/no_core/build.rs -------------------------------------------------------------------------------- /crates/tests/misc/no_core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/no_core/src/lib.rs -------------------------------------------------------------------------------- /crates/tests/misc/no_std/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/no_std/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/no_std/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/no_std/src/lib.rs -------------------------------------------------------------------------------- /crates/tests/misc/no_use/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/no_use/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/no_use/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/no_use/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/no_use/tests/test.rs -------------------------------------------------------------------------------- /crates/tests/misc/not_dll/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/not_dll/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/not_dll/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/not_dll/tests/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/not_dll/tests/sys.rs -------------------------------------------------------------------------------- /crates/tests/misc/not_dll/tests/win.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/not_dll/tests/win.rs -------------------------------------------------------------------------------- /crates/tests/misc/package/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/package/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/package/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/query_signature/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/readme/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/readme/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/readme/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/readme/src/lib.rs -------------------------------------------------------------------------------- /crates/tests/misc/registry_default/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/reserved/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/reserved/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/reserved/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/resources/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/resources/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/resources/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/return_handle/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/return_struct/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/string_param/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/struct_size/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/structs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/structs/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/structs/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/unions/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/unions/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/unions/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/unions/tests/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/unions/tests/sys.rs -------------------------------------------------------------------------------- /crates/tests/misc/unions/tests/win.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/unions/tests/win.rs -------------------------------------------------------------------------------- /crates/tests/misc/variant/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/variant/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/variant/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/wdk/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/wdk/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/wdk/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/wdk/tests/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/wdk/tests/sys.rs -------------------------------------------------------------------------------- /crates/tests/misc/wdk/tests/win.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/wdk/tests/win.rs -------------------------------------------------------------------------------- /crates/tests/misc/weak/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/weak/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/weak/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/weak/tests/weak.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/weak/tests/weak.rs -------------------------------------------------------------------------------- /crates/tests/misc/weak_ref/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/weak_ref/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/weak_ref/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/win32/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/win32/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/misc/win32/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/win32/tests/win32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/misc/win32/tests/win32.rs -------------------------------------------------------------------------------- /crates/tests/misc/win32_arrays/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/misc/window_long/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/winrt/activation/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/activation/build.rs -------------------------------------------------------------------------------- /crates/tests/winrt/composable/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/composable/build.rs -------------------------------------------------------------------------------- /crates/tests/winrt/event_core/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/winrt/events/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/events/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/winrt/events/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/events/build.rs -------------------------------------------------------------------------------- /crates/tests/winrt/events/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/events/src/lib.rs -------------------------------------------------------------------------------- /crates/tests/winrt/noexcept/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/noexcept/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/winrt/noexcept/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/noexcept/build.rs -------------------------------------------------------------------------------- /crates/tests/winrt/noexcept/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/noexcept/src/lib.rs -------------------------------------------------------------------------------- /crates/tests/winrt/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/old/Cargo.toml -------------------------------------------------------------------------------- /crates/tests/winrt/old/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/tests/winrt/old/tests/async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/old/tests/async.rs -------------------------------------------------------------------------------- /crates/tests/winrt/old/tests/cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/old/tests/cast.rs -------------------------------------------------------------------------------- /crates/tests/winrt/old/tests/enum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/old/tests/enum.rs -------------------------------------------------------------------------------- /crates/tests/winrt/old/tests/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/old/tests/error.rs -------------------------------------------------------------------------------- /crates/tests/winrt/old/tests/guid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/old/tests/guid.rs -------------------------------------------------------------------------------- /crates/tests/winrt/old/tests/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/old/tests/object.rs -------------------------------------------------------------------------------- /crates/tests/winrt/old/tests/uri.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/old/tests/uri.rs -------------------------------------------------------------------------------- /crates/tests/winrt/old/tests/xml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/old/tests/xml.rs -------------------------------------------------------------------------------- /crates/tests/winrt/overloads/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/overloads/build.rs -------------------------------------------------------------------------------- /crates/tests/winrt/ref_params/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/ref_params/build.rs -------------------------------------------------------------------------------- /crates/tests/winrt/reference/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tests/winrt/reference/build.rs -------------------------------------------------------------------------------- /crates/tools/bindgen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindgen/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/bindgen/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindgen/src/main.rs -------------------------------------------------------------------------------- /crates/tools/bindings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/bindings/src/core.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/core.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/core_com.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/core_com.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/future.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/future.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/main.rs -------------------------------------------------------------------------------- /crates/tools/bindings/src/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/metadata.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/numerics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/numerics.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/registry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/registry.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/result.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/services.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/services.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/strings.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/sys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/sys.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/version.txt -------------------------------------------------------------------------------- /crates/tools/bindings/src/windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/bindings/src/windows.txt -------------------------------------------------------------------------------- /crates/tools/gnu/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/gnu/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/gnu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/gnu/readme.md -------------------------------------------------------------------------------- /crates/tools/gnu/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/gnu/src/main.rs -------------------------------------------------------------------------------- /crates/tools/helpers/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/helpers/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/helpers/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/helpers/src/lib.rs -------------------------------------------------------------------------------- /crates/tools/license/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/license/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/license/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/license/src/main.rs -------------------------------------------------------------------------------- /crates/tools/merge/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/merge/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/merge/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/merge/src/main.rs -------------------------------------------------------------------------------- /crates/tools/msvc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/msvc/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/msvc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/msvc/readme.md -------------------------------------------------------------------------------- /crates/tools/msvc/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/msvc/src/main.rs -------------------------------------------------------------------------------- /crates/tools/standalone/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/standalone/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/standalone/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/standalone/src/main.rs -------------------------------------------------------------------------------- /crates/tools/test_all/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/test_all/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/test_all/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/test_all/src/main.rs -------------------------------------------------------------------------------- /crates/tools/workspace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/workspace/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/workspace/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/workspace/src/main.rs -------------------------------------------------------------------------------- /crates/tools/yml/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/yml/Cargo.toml -------------------------------------------------------------------------------- /crates/tools/yml/src/clippy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/yml/src/clippy.rs -------------------------------------------------------------------------------- /crates/tools/yml/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/yml/src/main.rs -------------------------------------------------------------------------------- /crates/tools/yml/src/msrv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/yml/src/msrv.rs -------------------------------------------------------------------------------- /crates/tools/yml/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/crates/tools/yml/src/test.rs -------------------------------------------------------------------------------- /docs/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/docs/code_of_conduct.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/debugger_visualizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/docs/debugger_visualizer.md -------------------------------------------------------------------------------- /docs/publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/docs/publish.cmd -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/docs/security.md -------------------------------------------------------------------------------- /license-apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/license-apache-2.0 -------------------------------------------------------------------------------- /license-mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/license-mit -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | newline_style = "Unix" 2 | -------------------------------------------------------------------------------- /web/book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/book.toml -------------------------------------------------------------------------------- /web/book/docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/.nojekyll -------------------------------------------------------------------------------- /web/book/docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/404.html -------------------------------------------------------------------------------- /web/book/docs/CNAME: -------------------------------------------------------------------------------- 1 | kennykerr.ca 2 | -------------------------------------------------------------------------------- /web/book/docs/ayu-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/ayu-highlight.css -------------------------------------------------------------------------------- /web/book/docs/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/book.js -------------------------------------------------------------------------------- /web/book/docs/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/clipboard.min.js -------------------------------------------------------------------------------- /web/book/docs/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/css/chrome.css -------------------------------------------------------------------------------- /web/book/docs/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/css/general.css -------------------------------------------------------------------------------- /web/book/docs/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/css/print.css -------------------------------------------------------------------------------- /web/book/docs/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/css/variables.css -------------------------------------------------------------------------------- /web/book/docs/elasticlunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/elasticlunr.min.js -------------------------------------------------------------------------------- /web/book/docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/favicon.svg -------------------------------------------------------------------------------- /web/book/docs/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/fonts/fonts.css -------------------------------------------------------------------------------- /web/book/docs/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/highlight.css -------------------------------------------------------------------------------- /web/book/docs/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/highlight.js -------------------------------------------------------------------------------- /web/book/docs/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/image.jpg -------------------------------------------------------------------------------- /web/book/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/index.html -------------------------------------------------------------------------------- /web/book/docs/mark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/mark.min.js -------------------------------------------------------------------------------- /web/book/docs/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/print.html -------------------------------------------------------------------------------- /web/book/docs/searcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/searcher.js -------------------------------------------------------------------------------- /web/book/docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/searchindex.js -------------------------------------------------------------------------------- /web/book/docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/toc.html -------------------------------------------------------------------------------- /web/book/docs/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/toc.js -------------------------------------------------------------------------------- /web/book/docs/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/docs/tomorrow-night.css -------------------------------------------------------------------------------- /web/book/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/readme.md -------------------------------------------------------------------------------- /web/book/src/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/src/404.html -------------------------------------------------------------------------------- /web/book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/src/SUMMARY.md -------------------------------------------------------------------------------- /web/book/src/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/src/image.jpg -------------------------------------------------------------------------------- /web/book/src/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/src/readme.md -------------------------------------------------------------------------------- /web/book/theme/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/theme/favicon.svg -------------------------------------------------------------------------------- /web/book/theme/head.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/book/theme/head.hbs -------------------------------------------------------------------------------- /web/features/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/.browserslistrc -------------------------------------------------------------------------------- /web/features/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/.env -------------------------------------------------------------------------------- /web/features/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/.gitignore -------------------------------------------------------------------------------- /web/features/.nsprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/.nsprc -------------------------------------------------------------------------------- /web/features/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/.prettierrc -------------------------------------------------------------------------------- /web/features/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/.vscode/settings.json -------------------------------------------------------------------------------- /web/features/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/eslint.config.js -------------------------------------------------------------------------------- /web/features/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/package-lock.json -------------------------------------------------------------------------------- /web/features/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/package.json -------------------------------------------------------------------------------- /web/features/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/public/index.html -------------------------------------------------------------------------------- /web/features/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /web/features/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/src/app.tsx -------------------------------------------------------------------------------- /web/features/src/components/path.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/src/components/path.tsx -------------------------------------------------------------------------------- /web/features/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/src/index.tsx -------------------------------------------------------------------------------- /web/features/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/src/react-app-env.d.ts -------------------------------------------------------------------------------- /web/features/src/worker/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/src/worker/search.ts -------------------------------------------------------------------------------- /web/features/src/worker/search_v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/src/worker/search_v1.ts -------------------------------------------------------------------------------- /web/features/src/worker/search_v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/src/worker/search_v2.ts -------------------------------------------------------------------------------- /web/features/src/worker/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/src/worker/worker.ts -------------------------------------------------------------------------------- /web/features/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/tsconfig.json -------------------------------------------------------------------------------- /web/features/webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/features/webpack.config.cjs -------------------------------------------------------------------------------- /web/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-rs/HEAD/web/static/index.html --------------------------------------------------------------------------------