mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 01:44:36 +00:00
10 lines
246 B
Odin
10 lines
246 B
Odin
// +build windows
|
|
package win32
|
|
|
|
foreign import "system:shell32.lib"
|
|
|
|
@(default_calling_convention = "std")
|
|
foreign shell32 {
|
|
@(link_name="CommandLineToArgvW") command_line_to_argv_w :: proc(cmd_list: Wstring, num_args: ^i32) -> ^Wstring ---;
|
|
}
|