blob: b0c7e2dd93920e0d4933221dbe8f14df496ed3f5 (
plain)
1
2
3
4
5
6
7
8
|
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 ---
}
|