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