Files
quark-shell-mac/quark-shell/quark-shell-Prefix.pch
2015-12-28 00:11:43 -08:00

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)