We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f508f6e commit 67402fdCopy full SHA for 67402fd
bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os_custom.c
@@ -135,6 +135,13 @@ BOOL Validate_AllowDarkModeForWindowWithTelemetryId(const BYTE* functionPtr)
135
return TRUE;
136
}
137
138
+ /* Win11 builds from 26100 */
139
+ if ((functionPtr[0x16] == 0xBE) && // mov esi,
140
+ (*(const DWORD*)(functionPtr + 0x17) == 0xA91E)) // 0A91Eh
141
+ {
142
+ return TRUE;
143
+ }
144
+
145
return FALSE;
146
#elif defined(_M_ARM64)
147
if (*(const DWORD*)(&functionPtr[0x18]) == 0xD29523C1) // mov x1,#0xA91E
0 commit comments