aboutsummaryrefslogtreecommitdiff
path: root/core/sys/windows
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2024-06-25 12:22:27 +0200
committerGitHub <noreply@github.com>2024-06-25 12:22:27 +0200
commit5d1d98cef32a42e9bc2020efd1328954a3f37ca7 (patch)
tree5097e4f47f59f4a31e08d92eeacb4efb2aa219f3 /core/sys/windows
parent93441a043a3857c1eb7f7ed5e52db62275e865c4 (diff)
parent845613c4046fc0f46e647cb40c1ee26b8800da7f (diff)
Merge pull request #3806 from NicknEma/windows_fixes
Update CommandLineToArgvW return type
Diffstat (limited to 'core/sys/windows')
-rw-r--r--core/sys/windows/shell32.odin2
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,