mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Add RunningApplication_finishedLaunching
This commit is contained in:
@@ -186,6 +186,11 @@ RunningApplication_localizedName :: proc "c" (self: ^RunningApplication) -> ^Str
|
|||||||
return msgSend(^String, self, "localizedName")
|
return msgSend(^String, self, "localizedName")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@(objc_type=RunningApplication, objc_name="finishedLaunching")
|
||||||
|
RunningApplication_finishedLaunching :: proc "c" (self: ^RunningApplication) -> BOOL {
|
||||||
|
return msgSend(BOOL, self, "isFinishedLaunching")
|
||||||
|
}
|
||||||
|
|
||||||
ApplicationDelegateTemplate :: struct {
|
ApplicationDelegateTemplate :: struct {
|
||||||
// Launching Applications
|
// Launching Applications
|
||||||
applicationWillFinishLaunching: proc(notification: ^Notification),
|
applicationWillFinishLaunching: proc(notification: ^Notification),
|
||||||
|
|||||||
Reference in New Issue
Block a user