diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-06-25 12:22:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-25 12:22:27 +0200 |
| commit | 5d1d98cef32a42e9bc2020efd1328954a3f37ca7 (patch) | |
| tree | 5097e4f47f59f4a31e08d92eeacb4efb2aa219f3 /core/sys/windows/shell32.odin | |
| parent | 93441a043a3857c1eb7f7ed5e52db62275e865c4 (diff) | |
| parent | 845613c4046fc0f46e647cb40c1ee26b8800da7f (diff) | |
Merge pull request #3806 from NicknEma/windows_fixes
Update CommandLineToArgvW return type
Diffstat (limited to 'core/sys/windows/shell32.odin')
| -rw-r--r-- | core/sys/windows/shell32.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/windows/shell32.odin b/core/sys/windows/shell32.odin index 4108d54d8..25923ded3 100644 --- a/core/sys/windows/shell32.odin +++ b/core/sys/windows/shell32.odin @@ -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, |