You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// For Win32 on NT-based operating systems, RtlGetVersion returns the value `VER_PLATFORM_WIN32_NT`.
72
-
finalint platformId;
73
-
74
-
/// The service-pack version string.
75
-
/// This member contains a null-terminated string, such as "Service Pack 3", which indicates the latest service pack installed on the system.
76
-
/// If no service pack is installed, RtlGetVersion might not initialize this string. Initialize szCSDVersion to zero (empty string) before the call to RtlGetVersion.
77
-
finalString csdVersion;
78
-
79
-
/// The major version number of the latest service pack installed on the system.
80
-
/// For example, for Service Pack 3, the major version number is three.
81
-
/// If no service pack has been installed, the value is zero.
82
-
finalint servicePackMajor;
83
-
84
-
/// The minor version number of the latest service pack installed on the system.
85
-
/// For example, for Service Pack 3, the minor version number is zero.
86
-
finalint servicePackMinor;
87
-
88
-
/// The product suites available on the system.
89
-
finalint suitMask;
90
-
91
-
/// The product type. This member contains additional information about the system.
92
-
finalint productType;
93
-
94
-
/// Reserved for future use.
95
-
finalint reserved;
96
-
97
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\BuildLab` registry key.
98
-
/// For example: `22000.co_release.210604-1628`.
99
-
finalString buildLab;
100
-
101
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\BuildLabEx` registry key.
102
-
/// For example: `22000.1.amd64fre.co_release.210604-1628`.
103
-
finalString buildLabEx;
104
-
105
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId` registry key.
106
-
finalUint8List digitalProductId;
107
-
108
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DisplayVersion` registry key.
109
-
/// For example: `21H2`.
110
-
finalString displayVersion;
111
-
112
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\EditionID` registry key.
113
-
finalString editionId;
114
-
115
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\InstallDate` registry key.
116
-
finalDateTime installDate;
117
-
118
-
/// Displayed as "Product ID" in Windows Settings.
119
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProductId` registry key.
120
-
/// For example: `00000-00000-0000-AAAAA`.
121
-
finalString productId;
122
-
123
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProductName` registry key.
124
-
/// For example: `Windows 10 Home Single Language`.
125
-
finalString productName;
126
-
127
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\RegisteredOwner` registry key.
128
-
/// For example: `Microsoft Corporation`.
129
-
finalString registeredOwner;
130
-
131
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ReleaseId` registry key.
132
-
/// For example: `1903`.
133
-
finalString releaseId;
134
-
135
-
/// Displayed as "Device ID" in Windows Settings.
136
-
/// Value of `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SQMClient\MachineId` registry key.
0 commit comments