SoundNote/Frameworks/EyeTunes.framework/Versions/A/Headers/ETDebug.h

10 lines
144 B
C
Raw Normal View History

2011-03-03 10:29:24 -06:00
#import <Foundation/Foundation.h>
#ifdef ET_DEBUG
#define ETLog NSLog
#else
#define ETLog NullLog
#endif
void NullLog(NSString *format, ...);