-
Notifications
You must be signed in to change notification settings - Fork 74
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
mingw64 compiler warning in wincon/pdcscrn #251
Comments
I've known about this one for a while now. I've tried various ways of declaring that function, but always get this warning. It's the reason -Werror is not enabled on WinCon. |
That should be able to be silenced by the following, I guess: - (GetConsoleScreenBufferInfoExFn)GetProcAddress(h_kernel,
+ (GetConsoleScreenBufferInfoExFn)(void *)GetProcAddress(h_kernel, |
Hmmm... that gets me the warnings shown below. Are you seeing a clean build with this change? If you are, I think I'll add it and commit it, because (1) it at least fixes the warnings on some platform(s) and (2) a pedantic warning is at least a step forward from a plain "ordinary" warning.
|
Nope, that was just an educated guess. More guessing (I'd try in the order simple to complicate):
|
The text was updated successfully, but these errors were encountered: