[kernel] Revert incorrectly modified KernelVersion struct

This commit is contained in:
Marco Rodolfi 2025-01-17 09:23:53 +01:00
parent 1e3f256bb7
commit 31433106da
1 changed files with 6 additions and 4 deletions

View File

@ -153,11 +153,13 @@ struct DPCImpersonationScope {
struct KernelVersion {
union {
xe::be<uint64_t> value;
union {
xe::be<uint16_t> major;
xe::be<uint16_t> minor;
xe::be<uint16_t> build;
xe::be<uint16_t> qfe;
};
};
KernelVersion(uint16_t build_ver = kBaseKernelBuildVersion) {
major = 2;