Merge pull request #33 from sirnacnud/add-NSApplicationLaunchUserNotificationKey

Add symbol for NSApplicationLaunchUserNotificationKey
This commit is contained in:
CuriousTommy 2024-01-06 19:57:46 -08:00 committed by GitHub
commit e348862349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -80,6 +80,9 @@ const NSNotificationName NSApplicationWillTerminateNotification =
const NSNotificationName NSApplicationDidChangeScreenParametersNotification = const NSNotificationName NSApplicationDidChangeScreenParametersNotification =
@"NSApplicationDidChangeScreenParametersNotification"; @"NSApplicationDidChangeScreenParametersNotification";
NSString *const NSApplicationLaunchUserNotificationKey =
@"NSApplicationLaunchUserNotificationKey";
const NSAppKitVersion NSAppKitVersionNumber = 1504; // macOS 10.12 const NSAppKitVersion NSAppKitVersionNumber = 1504; // macOS 10.12
NSApplication *NSApp = nil; NSApplication *NSApp = nil;

View File

@ -55,6 +55,8 @@ APPKIT_EXPORT const NSNotificationName NSApplicationWillTerminateNotification;
APPKIT_EXPORT const NSNotificationName APPKIT_EXPORT const NSNotificationName
NSApplicationDidChangeScreenParametersNotification; NSApplicationDidChangeScreenParametersNotification;
APPKIT_EXPORT NSString *const NSApplicationLaunchUserNotificationKey;
typedef double NSAppKitVersion; typedef double NSAppKitVersion;
APPKIT_EXPORT const NSAppKitVersion NSAppKitVersionNumber; APPKIT_EXPORT const NSAppKitVersion NSAppKitVersionNumber;