We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
jNizM writes:
when you change the lib to support v2 and drop v1.0 support you should drop things like this too: before: PrintWindow(hwnd, hdc, Flags:=0) { Ptr := A_PtrSize ? "UPtr" : "UInt" return DllCall("PrintWindow", Ptr, hwnd, Ptr, hdc, "uint", Flags) } after: PrintWindow(hwnd, hdc, flags := 0) { return DllCall("PrintWindow", "ptr", hwnd, "ptr", hdc, "uint", flags) } https://github.com/jNizM/AutoHotkey_MSDN_Types/blob/master/src/Windows_Data_Types.txt
when you change the lib to support v2 and drop v1.0 support you should drop things like this too:
before:
PrintWindow(hwnd, hdc, Flags:=0) { Ptr := A_PtrSize ? "UPtr" : "UInt" return DllCall("PrintWindow", Ptr, hwnd, Ptr, hdc, "uint", Flags) }
after:
PrintWindow(hwnd, hdc, flags := 0) { return DllCall("PrintWindow", "ptr", hwnd, "ptr", hdc, "uint", flags) }
https://github.com/jNizM/AutoHotkey_MSDN_Types/blob/master/src/Windows_Data_Types.txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
jNizM writes:
The text was updated successfully, but these errors were encountered: