diff --git a/CHANGELOG.md b/CHANGELOG.md index 54f5a13bc8..565be68647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,8 @@ And please only add new entries to the top of this list, right below the `# Unre - **Breaking:** Replaced `EventLoopExtMacOS` with `EventLoopBuilderExtMacOS` (which also has renamed methods). - **Breaking:** Replaced `EventLoopExtWindows` with `EventLoopBuilderExtWindows` (which also has renamed methods). - **Breaking:** Replaced `EventLoopExtUnix` with `EventLoopBuilderExtUnix` (which also has renamed methods). +- **Breaking:** The platform specific extensions for Windows `winit::platform::windows` have changed. The remaining `HANDLE`-like types `HWND` and `HMENU` were converted from winapi types to `*mut c_void`. This was done to be consistent with the other types, which were already `*mut c_void` and to not expose types of internal dependencies. +- The internal bindings to the [Windows API](https://docs.microsoft.com/en-us/windows/win32/) were changed from the unofficial [winapi](https://github.com/retep998/winapi-rs) bindings to the official Microsoft [windows-sys](https://github.com/microsoft/windows-rs) bindings. # 0.26.1 (2022-01-05)