Skip to content

Commit

Permalink
Merge pull request #3806 from NicknEma/windows_fixes
Browse files Browse the repository at this point in the history
Update CommandLineToArgvW return type
  • Loading branch information
Kelimion authored Jun 25, 2024
2 parents 93441a0 + 845613c commit 5d1d98c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/sys/windows/shell32.odin
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ foreign import shell32 "system:Shell32.lib"

@(default_calling_convention="system")
foreign shell32 {
CommandLineToArgvW :: proc(cmd_list: wstring, num_args: ^c_int) -> ^wstring ---
CommandLineToArgvW :: proc(cmd_list: wstring, num_args: ^c_int) -> [^]wstring ---
ShellExecuteW :: proc(
hwnd: HWND,
lpOperation: LPCWSTR,
Expand Down

0 comments on commit 5d1d98c

Please sign in to comment.