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