mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-22 15:37:51 +00:00
10 lines
252 B
Odin
10 lines
252 B
Odin
package objc_Foundation
|
|
|
|
@(objc_class="NSSavePanel")
|
|
SavePanel :: struct{ using _: Panel }
|
|
|
|
@(objc_type=SavePanel, objc_name="runModal")
|
|
SavePanel_runModal :: proc(self: ^SavePanel) -> ModalResponse {
|
|
return msgSend(ModalResponse, self, "runModal")
|
|
}
|