mirror of
https://github.com/TermiT/Flycut.git
synced 2025-02-22 23:13:34 +08:00
19 lines
425 B
Text
Executable file
19 lines
425 B
Text
Executable file
//
|
|
// Prefix header for all source files of the 'Flycut' target in the 'Flycut' project
|
|
//
|
|
|
|
#ifdef __OBJC__
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#define kiCloudId @"iCloud.com.generalarcade.flycut"
|
|
#define kFlycutHelperId @"com.generalarcade.flycuthelper"
|
|
|
|
//#define SANDBOXING
|
|
|
|
#ifdef DEBUG
|
|
# define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
|
|
#else
|
|
# define DLog(...)
|
|
#endif
|
|
|
|
#endif
|