mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-01 12:18:15 +00:00
16 lines
416 B
Odin
16 lines
416 B
Odin
package objc_Foundation
|
|
|
|
@(objc_class="NSAutoreleasePool")
|
|
AutoreleasePool :: struct {using _: Object}
|
|
|
|
AutoreleasePool_drain :: proc(self: ^AutoreleasePool) {
|
|
msgSend(nil, self, "drain")
|
|
}
|
|
AutoreleasePool_addObject :: proc(self: ^AutoreleasePool, obj: ^Object) {
|
|
msgSend(nil, self, "addObject:", obj)
|
|
}
|
|
AutoreleasePool_showPools :: proc(self: ^AutoreleasePool, obj: ^Object) {
|
|
msgSend(nil, self, "showPools")
|
|
}
|
|
|