windigo
windigo copied to clipboard
Doesn't work in Windows 7 and 8.1
That is mainly because of these changes:
- Go version was upgraded to
1.21which drops support for Windows versions below 10. - There is a
SetUserObjectInformation()call in_FirstMainStuff()function (insideany_globals.gofile) which will makeRunAsMain()calls panic in:
- Windows 7 SP1
- Windows 8.1
- Wine (tested in Wine v8)
I confirmed this by forking this repository and removing the SetUserObjectInformation() call. Can that SetUserObjectInformation() call optionally be skipped so that win32 apps built with windigo work fine in those platforms?