This project has been superseded by windows-rs, which is maintained by Microsoft. Please visit github.com/microsoft/windows-rs.
This crate provides type and method definitions to use the Windows Runtime (WinRT) APIs from Rust.
This library is still subject to breaking changes, but it is already possible to use all APIs, including asynchronous ones (a completion handler can be passed as a closure). Creating custom WinRT classes using inheritance is not yet supported, so it is currently not possible to create user interfaces using XAML.
Using this crate requires at least Rust 1.28.
Additional nightly features (e.g. using specialization) can be enabled with the nightly
Cargo feature.
All definitions are automatically generated from WinMD metadata files.
The module structure of the generated code reflects the namespace structure of the original definitions
starting at winrt::windows
(if the crate has not been renamed on import) for the Windows
namespace.
All names have been adjusted to fit the Rust coding style, therefore module names are all in lower case and function names
are converted to snake_case
.
Since it takes a long time to compile all generated definitions (the generated files amount to more than 15 MB),
Cargo features have been introduced that correspond to the WinMD files. For example, to use the definitions from Windows.Devices.winmd
, use the feature windows-devices
.
There is no feature for definitions from Windows.Foundation.winmd
, these are always available. Whenever a (method) definition references a type from a different WinMD file,
it is also not available until you enable the corresponding features for all required type definitions.
With only the definitions from Windows.Foundation
, this crates takes about 10 seconds to compile. With all features enabled (there is a shortcut feature all
), compilation can take
as long as 5 minutes, so it is highly recommended to enable features only as you need them.
extern crate winrt;
use winrt::*; // import various helper types
use winrt::windows::system::diagnostics::*; // import namespace Windows.System.Diagnostics
fn main() {
let infos = ProcessDiagnosticInfo::get_for_processes().unwrap().unwrap();
println!("Currently executed processes ({}):", infos.get_size().unwrap());
for p in &infos {
let p = p.unwrap();
let pid = p.get_process_id().unwrap();
let exe = p.get_executable_file_name().unwrap();
println!("[{}] {}", pid, exe);
}
}
Because this example uses the Windows.System
namespace, we have to enable the windows-system
feature in Cargo.toml
:
[dependencies.winrt]
version = "0.6.0"
features = ["windows-system"]
Running this example program should result in an output similar to the following:
Currently executed processes (132):
[4] System
[392] smss.exe
[520] csrss.exe
[604] wininit.exe
[612] csrss.exe
[708] winlogon.exe
...
The Windows Runtime (WinRT) has been introduced in Windows 8 and provides the foundation for building Windows apps that run on different devices using different programming languages. The Universal Windows Platform (UWP) is an extension of WinRT, introduced in Windows 10, that allows using additional, more platform-specific APIs besides those provided by WinRT (according to MSDN). WinRT is not to be confused with the discontinued flavor of the Windows operating system for ARM devices, Windows RT.
Version 0.6.0 was the last release of this project. It has been superseded by winrt-rs.
- [Breaking] Implicit initialization for the runtime context.
RuntimeContext
no longer exists and was replaced byinit_apartment
(but it's usually not necessary to call it). - [Breaking] Improved snake case conversion for method names
- [Breaking] Removed
lang-compat
feature - Use
std::ptr::NonNull
to enable size optimizaton ofOption<ComPtr<...>>
- Implement
Send
forHString
⚠️ This will be the last version that uses the Rust 2015 Edition.
- Regenerated bindings from latest Windows SDK
- [Breaking] Wrappers are no longer marked as unsafe 🎉
- [Breaking] Wrappers for methods that could return
null
will now returnResult<Option<ComPtr<...>>>
instead ofResult<ComPtr<...>>
. - [Breaking] Various improvements to how iterators are handled
- [Breaking] Upgrade to winapi 0.3
- [Breaking] Default constructors are now accessible via
RtDefaultConstructible
trait - [Breaking] Fixed and improved error handling (among other changes,
blocking_get()
now returnsResult
) - [Breaking] Output array parameters are now passed as mutable slices (
&mut [T]
) - Provide access to
IMemoryBufferByteAccess
- Add another example (
hexdump
)
- [Breaking] The
self
parameter for interface calls is now passed as&self
instead of&mut self
- [Breaking] Remove (empty) contract structs from generated code
- Documentation improvements
- Add
blocking_get()
for async operations - Add toast notification example
- Factories and statics now actually work
- [Breaking] Feature names use dash instead of underscore
- First release
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.