WrapEarnPass created an issue (geany/geany-plugins#1587)

scope/src/thread.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.

Alternatively, you could elide the define entirely and move it to a CFLAG -D 
argument, which would allow people to customize it at build time, without 
having to edit scope/src/thread.c
and ensure it is set throughout the entire build process.

Similar to https://github.com/geany/geany/issues/4615

-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1587
You are receiving this because you are subscribed to this thread.

Message ID: <geany/geany-plugins/issues/[email protected]>

Reply via email to