Reorganize sys/win32

This commit is contained in:
gingerBill
2019-01-02 19:17:27 +00:00
parent 75aeb02c39
commit 61a3e50d1b
8 changed files with 1483 additions and 1462 deletions
+9
View File
@@ -0,0 +1,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 ---;
}