-
-
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
More syscall fixes #3713
More syscall fixes #3713
Conversation
WalkthroughThe changes primarily involve updating system call invocations across multiple files from Changes
Sequence Diagram(s)sequenceDiagram
participant User as User
participant System as System Call
participant Function as Function Implementation
User->>Function: Call Function
Function->>System: Invoke syscall.SyscallN
System-->>Function: Return Results
Function-->>User: Return Results
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
Deploying wails with Cloudflare Pages
|
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (5)
- v2/internal/frontend/desktop/windows/winc/w32/user32.go (6 hunks)
- v2/internal/frontend/desktop/windows/winc/w32/utils.go (2 hunks)
- v2/internal/frontend/desktop/windows/winc/w32/uxtheme.go (3 hunks)
- v2/internal/go-common-file-dialog/cfd/iFileOpenDialog.go (1 hunks)
- website/src/pages/changelog.mdx (1 hunks)
Files skipped from review due to trivial changes (1)
- website/src/pages/changelog.mdx
Additional comments not posted (14)
v2/internal/frontend/desktop/windows/winc/w32/uxtheme.go (3)
86-89
: LGTM!The function is correctly updated to use
syscall.SyscallN
for better flexibility in handling arguments.The code changes are approved.
137-140
: LGTM!The function is correctly updated to use
syscall.SyscallN
for better flexibility in handling arguments.The code changes are approved.
Line range hint
146-150
: LGTM!The function is correctly updated to use
syscall.SyscallN
for better flexibility in handling arguments.The code changes are approved.
v2/internal/go-common-file-dialog/cfd/iFileOpenDialog.go (1)
167-170
: LGTM!The function is correctly updated to use
syscall.SyscallN
for better flexibility in handling arguments.The code changes are approved.
v2/internal/frontend/desktop/windows/winc/w32/utils.go (3)
78-81
: LGTM!The function is correctly updated to use
syscall.SyscallN
for better flexibility in handling arguments.The code changes are approved.
86-89
: LGTM!The function is correctly updated to use
syscall.SyscallN
for better flexibility in handling arguments.The code changes are approved.
Line range hint
95-100
: LGTM!The function is correctly updated to use
syscall.SyscallN
for better flexibility in handling arguments.The code changes are approved.
v2/internal/frontend/desktop/windows/winc/w32/user32.go (7)
Line range hint
642-646
: LGTM!The change to
syscall.SyscallN
is appropriate and improves flexibility.The code changes are approved.
795-798
: LGTM!The change to
syscall.SyscallN
is appropriate and improves flexibility.The code changes are approved.
835-837
: LGTM!The change to
syscall.SyscallN
is appropriate and improves flexibility.The code changes are approved.
1228-1230
: LGTM!The change to
syscall.SyscallN
is appropriate and improves flexibility.The code changes are approved.
1243-1246
: LGTM!The change to
syscall.SyscallN
is appropriate and improves flexibility.The code changes are approved.
1250-1253
: LGTM!The change to
syscall.SyscallN
is appropriate and improves flexibility.The code changes are approved.
1271-1274
: LGTM!The change to
syscall.SyscallN
is appropriate and improves flexibility.The code changes are approved.
Description
More syscall fixes for Windows. Should prevent issues on Go 1.23.
Summary by CodeRabbit
New Features
getResults
method to support dynamic argument counts for better compatibility and error management.Bug Fixes
Documentation