mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 01:14:40 +00:00
10 lines
223 B
Odin
10 lines
223 B
Odin
// +build windows
|
|
package sys_windows
|
|
|
|
foreign import shell32 "system:Shell32.lib"
|
|
|
|
@(default_calling_convention = "std")
|
|
foreign shell32 {
|
|
CommandLineToArgvW :: proc(cmd_list: wstring, num_args: ^c_int) -> ^wstring ---
|
|
}
|