Halil Durmus
Halil Durmus
Noticed this while working on #479. Take `IXmlNodeList` for example. It requires two interfaces: `IVectorView` and `IIterable`. The problem is that the `typeDef` of these interfaces returns an empty `name`....
Here is the [link](https://docs.microsoft.com/en-us/windows/win32/api/_winsensors/) that lists all the enums, functions, and interfaces of the `Sensor API`. ### Discussed in https://github.com/timsneath/win32/discussions/493 Originally posted by **GiuseppeFn** June 10, 2022 I really hate...
`IFileOpenPicker`'s [pickSingleFileAsync()](https://docs.microsoft.com/en-us/uwp/api/windows.storage.pickers.fileopenpicker.picksinglefileasync?view=winrt-22621#windows-storage-pickers-fileopenpicker-picksinglefileasync) conflicts with `IFileOpenPickerWithOperationId`'s [pickSingleFileAsync(string pickerOperationId)](https://docs.microsoft.com/en-us/uwp/api/windows.storage.pickers.fileopenpicker.picksinglefileasync?view=winrt-22621#windows-storage-pickers-fileopenpicker-picksinglefileasync(system-string)).
Some WinRT APIs take `IIterable` as a parameter. We need to find a way to allow consumers to create their own `IVector`s so that they can use these APIs.
This PR also; - Allows more classes and interfaces to be automatically generated - Adds `BatteryReport`, `Headset`, `HostName`, `IPInformation`, `NetworkItem` and `NetworkAdapter` classes (some of them required by `Gamepad` and...
https://docs.microsoft.com/en-us/uwp/api/windows.foundation.uri?view=winrt-22621
https://github.com/timsneath/win32/blob/f8705863fd288983ce0891d1c019ac64e8942dea/test/winrt_phonenumberformatter_test.dart#L18 The default constructor of `PhoneNumberFormatter` uses the current default region. Since this test is dependent on the current default region being `US` (which is not the case for me),...
Currently, we cannot use extension types that implement `NativeType`s as type arguments in FFI. Given that extension types do not exist at runtime, I cannot find any reason why this...
### Is there an existing issue for this? - [X] I have searched the existing issues. ### Version 3.1.0 ### Description Running `melos version --no-dependent-constraints` generates incorrect workspace CHANGELOG. `The...