| 17 | uint16_t Revision; |
| 18 | |
| 19 | static constexpr Version FromHighLow(DWORD high, DWORD low) |
| 20 | { |
| 21 | return { HIWORD(high), LOWORD(high), HIWORD(low), LOWORD(low) }; |
| 22 | } |
| 23 | |
| 24 | static constexpr Version FromPackageVersion(winrt::Windows::ApplicationModel::PackageVersion version) |
| 25 | { |
nothing calls this directly
no outgoing calls
no test coverage detected