Skip to content

Commit

Permalink
docs: internal info about the different supported windows versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Lej77 committed Oct 3, 2024
1 parent 261039c commit cb65de0
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
10 changes: 9 additions & 1 deletion src/interfaces_multi/build_10240.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
//! Support for Windows 10.
//! Original Windows 10 version.
//!
//! From
//! [Wikipedia](https://en.wikipedia.org/wiki/Windows_10_(original_release)):
//! > The original version of Windows 10 (also retroactively named version 1507
//! > and codenamed "Threshold 1") was released in July 2015. It carries the
//! > build number 10.0.10240;
//!
//! # Interface definitions
//!
//! The [`struct@IVirtualDesktopNotification`] and
//! [`struct@IVirtualDesktopManagerInternal`] interfaces do not take "monitor"
Expand Down
8 changes: 8 additions & 0 deletions src/interfaces_multi/build_16299.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//! Windows 10 Version 1709 (Fall Creators Update)
//!
//! From [Wikipedia](https://en.wikipedia.org/wiki/Windows_10,_version_1709):
//! > Windows 10 Fall Creators Update (also known as version 1709 and codenamed
//! > "Redstone 3") is the fourth major update to Windows 10 and the third in a
//! > series of updates under the Redstone codenames. It carries the build
//! > number 10.0.16299.

use super::*;
use build_10240 as prev_build;

Expand Down
8 changes: 8 additions & 0 deletions src/interfaces_multi/build_17134.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//! Windows 10 Version 1803 (April 2018 Update)
//!
//! From [Wikipedia](https://en.wikipedia.org/wiki/Windows_10,_version_1803):
//! > Windows 10 April 2018 Update (also known as version 1803 and codenamed
//! > "Redstone 4") is the fifth major update to Windows 10 and the fourth in a
//! > series of updates under the Redstone codenames. It carries the build
//! > number 10.0.17134.

use super::*;
use build_10240 as prev_build;

Expand Down
7 changes: 6 additions & 1 deletion src/interfaces_multi/build_19045.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
//! Windows 10
//! Windows 10 Version 22H2
//!
//! From
//! [Wikipedia](https://en.wikipedia.org/wiki/Windows_10_version_history#Version_22H2_(2022_Update)):
//! > The Windows 10 2022 Update (codenamed "22H2") is the thirteenth and final
//! > major update to Windows 10. It carries the build number 10.0.19045.

use super::*;
use build_10240 as prev_build;
Expand Down

0 comments on commit cb65de0

Please sign in to comment.