Add open file dialog panel to foundation

This commit is contained in:
Colin Davidson
2023-02-18 14:56:51 -08:00
parent 66f2881a78
commit ed371f2b0d
4 changed files with 52 additions and 3 deletions
+3 -3
View File
@@ -25,6 +25,6 @@ URL_initFileURLWithPath :: proc(self: ^URL, path: ^String) -> ^URL {
}
@(objc_type=URL, objc_name="fileSystemRepresentation")
URL_fileSystemRepresentation :: proc(self: ^URL) -> ^String {
return msgSend(^String, self, "fileSystemRepresentation")
}
URL_fileSystemRepresentation :: proc(self: ^URL) -> cstring {
return msgSend(cstring, self, "fileSystemRepresentation")
}