From 8271f7e5ece46b3c94e143ad8dcaf2c15288f52f Mon Sep 17 00:00:00 2001 From: Duncan Cunningham Date: Sat, 6 Jan 2024 21:32:31 +0100 Subject: [PATCH] Add symbol for NSApplicationLaunchUserNotificationKey --- AppKit/NSApplication.m | 3 +++ AppKit/include/AppKit/NSApplication.h | 2 ++ 2 files changed, 5 insertions(+) diff --git a/AppKit/NSApplication.m b/AppKit/NSApplication.m index 431cac7f..25e8322a 100644 --- a/AppKit/NSApplication.m +++ b/AppKit/NSApplication.m @@ -80,6 +80,9 @@ const NSNotificationName NSApplicationWillTerminateNotification = const NSNotificationName NSApplicationDidChangeScreenParametersNotification = @"NSApplicationDidChangeScreenParametersNotification"; +NSString *const NSApplicationLaunchUserNotificationKey = + @"NSApplicationLaunchUserNotificationKey"; + const NSAppKitVersion NSAppKitVersionNumber = 1504; // macOS 10.12 NSApplication *NSApp = nil; diff --git a/AppKit/include/AppKit/NSApplication.h b/AppKit/include/AppKit/NSApplication.h index 805a17f0..9c913a63 100644 --- a/AppKit/include/AppKit/NSApplication.h +++ b/AppKit/include/AppKit/NSApplication.h @@ -55,6 +55,8 @@ APPKIT_EXPORT const NSNotificationName NSApplicationWillTerminateNotification; APPKIT_EXPORT const NSNotificationName NSApplicationDidChangeScreenParametersNotification; +APPKIT_EXPORT NSString *const NSApplicationLaunchUserNotificationKey; + typedef double NSAppKitVersion; APPKIT_EXPORT const NSAppKitVersion NSAppKitVersionNumber;