mirror of
https://github.com/HackPlan/quark-shell-mac.git
synced 2026-04-29 03:55:40 +08:00
18 lines
551 B
Plaintext
18 lines
551 B
Plaintext
//
|
|
// Prefix header
|
|
//
|
|
// The contents of this file are implicitly included at the beginning of every source file.
|
|
//
|
|
|
|
#ifdef __OBJC__
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <WebKit/WebKit.h>
|
|
#endif
|
|
|
|
static NSString * const kRootPath = @"app/";
|
|
static NSString * const kIndexPath = @"app/index.html";
|
|
static NSString * const kPreferencesDirectory = @"app/preferences/";
|
|
|
|
#define IS_PRIOR_TO_10_9 (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_9)
|
|
#define IS_PRIOR_TO_10_10 (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_10_Max)
|