-
Notifications
You must be signed in to change notification settings - Fork 17.8k
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
syscall: request: syscall.Syscall18 on Windows #28434
Comments
Adding syscall.Syscall18 SGTM. I am not sure what others will say. Alex |
/cc @bradfitz |
I guess the answer is 18. Sure? |
I take it @bradfitz is OK with syscall.Syscall18. @hajimehoshi would you like to do the honors and change the code? This https://golang.org/doc/contribute.html is how to contribute to Go project. Alex |
Sure, I'll try this later! |
Change https://golang.org/cl/147117 mentions this issue: |
2 similar comments
Change https://golang.org/cl/147117 mentions this issue: |
Change https://golang.org/cl/147117 mentions this issue: |
I am not sure there is Win32API function that accepts more than 15 arguments, but there are some OpenGL fuctions that accept more than 15 arguments:
Now we are trying to eliminate Cgo usages from go-gl (OpenGL binding) on Windows (go-gl/gl#109), and I thought it possible to use
syscall.SyscallN
. However, I found the above functions that cannot be passed tosyscall.SyscallN
The text was updated successfully, but these errors were encountered: