shell32.odin 246 B

123456789
  1. // +build windows
  2. package win32
  3. foreign import "system:shell32.lib"
  4. @(default_calling_convention = "std")
  5. foreign shell32 {
  6. @(link_name="CommandLineToArgvW") command_line_to_argv_w :: proc(cmd_list: Wstring, num_args: ^i32) -> ^Wstring ---;
  7. }