WrapEarnPass created an issue (geany/geany#4615) src/win32.c:#define _WIN32_WINNT 0x0501
Per [microfot](https://learn.microsoft.com/en-us/cpp/porting/modifying-winver-and-win32-winnt?view=msvc-170) #define _WIN32_WINNT_WINXP 0x0501 // Windows XP I believe you are compiling with MingW for cross platform builds. I know the ucrt version of ming supports builds above ```_WIN32_WINNT_WIN7 0x0601``` I would advise setting it to ```#define _WIN32_WINNT_WIN10 0x0A00 // Windows 10``` as microfot has kilt all their other OSes, and there is no way to install signed software on anything less than 10. ``` #define WINVER 0x0A00 #define _WIN32_WINNT 0x0A00 ``` I would also recommend removing the #define _WIN32_IE 0x0500 (if I sound snippy. I am. I have been recompiling windows executables for the last 4 days) -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/4615 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany/issues/[email protected]>
