aboutsummaryrefslogtreecommitdiff
path: root/core/sys/win32/shell32.odin
blob: 3cedf0527b6b00bdf80f3bfb343f03ef3e692833 (plain)
1
2
3
4
5
6
7
8
9
// +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 ---
}