blob: 70d8943bdc2a85b1da61a97d2bc0334b965f6ad0 (
plain)
1
2
3
4
5
6
7
8
9
|
// +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 ---
}
|