mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-13 06:41:26 -07:00
31 lines
875 B
Odin
31 lines
875 B
Odin
package objc_Foundation
|
|
|
|
@(objc_class="NSNotification")
|
|
Notification :: struct{using _: Object}
|
|
|
|
|
|
@(objc_type=Notification, objc_class_name="alloc")
|
|
Notification_alloc :: proc() -> ^Notification {
|
|
return msgSend(^Notification, Notification, "alloc")
|
|
}
|
|
|
|
@(objc_type=Notification, objc_name="init")
|
|
Notification_init :: proc(self: ^Notification) -> ^Notification {
|
|
return msgSend(^Notification, self, "init")
|
|
}
|
|
|
|
|
|
@(objc_type=Notification, objc_name="name")
|
|
Notification_name :: proc(self: ^Notification) -> ^String {
|
|
return msgSend(^String, self, "name")
|
|
}
|
|
|
|
@(objc_type=Notification, objc_name="object")
|
|
Notification_object :: proc(self: ^Notification) -> ^Object {
|
|
return msgSend(^Object, self, "object")
|
|
}
|
|
|
|
@(objc_type=Notification, objc_name="userInfo")
|
|
Notification_userInfo :: proc(self: ^Notification) -> ^Dictionary {
|
|
return msgSend(^Dictionary, self, "userInfo")
|
|
} |