-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
psapi is missing in windows xp #198
Comments
compiled env: vs2017;select xp options |
Hey @cattrace, it may be worth trying to replace EnumProcessModulesEx with EnumProcessModules. Note the difference in prototype with the inclusion of a I don't believe the |
As @cetfor mentioned, EnumProcessModulesEx requires Windows Vista+. And apparently that last parameter of EnumProcessModulesEx is used there, not that we can easily get rid of it. If you want, you need to do the filtering by yourself. Honestly, at this point, I don't think XP is anymore a target to aim for. @gsuberland ? :) |
…rModules.cpp use it, see issue ayoubfaouzi#198 for details.
It's fair to say that Windows XP isn't officially supported by this project at the moment, since it's so old, but I think wherever possible we should still try to make it at least not crash, even if the check can't run. While looking into this I discovered that we would actually have not been able to run al-khaser properly on some Windows 7 machines, because they moved I'm merging #207 to resolve this. |
The text was updated successfully, but these errors were encountered: