blob: a6ecefc320dc87174be3b4a8b29784dbc1c37b38 (
plain)
1
2
3
4
5
6
7
8
9
|
// +build windows
package sys_windows
foreign import shell32 "system:Shell32.lib"
@(default_calling_convention="stdcall")
foreign shell32 {
CommandLineToArgvW :: proc(cmd_list: wstring, num_args: ^c_int) -> ^wstring ---
}
|