Add RunningApplication_finishedLaunching

This commit is contained in:
Glenn
2025-11-03 14:19:41 +00:00
parent 9f78c1e7be
commit 4f939cadc3
@@ -186,6 +186,11 @@ RunningApplication_localizedName :: proc "c" (self: ^RunningApplication) -> ^Str
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 {
// Launching Applications
applicationWillFinishLaunching: proc(notification: ^Notification),