diff options
| author | Tadeo hepperle <tadeo@do-mix.de> | 2024-06-26 19:31:00 +0200 |
|---|---|---|
| committer | Tadeo hepperle <tadeo@do-mix.de> | 2024-06-26 19:31:00 +0200 |
| commit | 67e69f719648704c9fa118dcc7cb052d8ab30608 (patch) | |
| tree | d28d893b51ba0796d41bd4fe6b86133cd3c0eb40 /core/sys/windows/shell32.odin | |
| parent | 18dadd94e3a91d1eed5938f4998b8b7a71765afb (diff) | |
| parent | 8d1827838fb902be4f16b3b028ac0d299a456857 (diff) | |
Merge branch 'master' into fix-vulkan-codegen-arrays-as-proc-args
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, |