NSRunningApplication implementation

This commit is contained in:
Gregory John Casamento 2021-03-20 08:22:47 -04:00
parent b8b4d7c2f0
commit 14464dc864

View file

@ -69,6 +69,25 @@ enum {
@property (readonly) BOOL ownsMenuBar;
#endif
#else
{
BOOL _terminated;
BOOL _finishedLaunching;
BOOL _hidden;
BOOL _active;
NSApplicationActivationPolicy _activationPolicy;
NSString *_localizedName;
NSString *_bundleIdentifier;
NSURL *_bundleURL;
NSURL *_executableURL;
pid_t _processIdentifier;
NSInteger _executableArchitecture;
NSDate *_launchDate;
NSImage *_icon;
}
- (BOOL)isTerminated;
- (BOOL)isFinishedLaunching;
- (BOOL)isHidden;