source: trunk/Cocoa/F-Script Anywhere/Source/FSAnywhere.h@ 513

Last change on this file since 513 was 412, checked in by Nicholas Riley, 16 years ago

Fewer warnings and extraneous build settings.

File size: 623 bytes
Line 
1/*
2 * FSAnywhere.h
3 * F-Script Anywhere
4 *
5 * Created by Nicholas Riley on Sat Feb 02 2002.
6 * Copyright (c) 2002 Nicholas Riley. All rights reserved.
7 *
8 */
9
10#define FSA_FSCRIPT_MIN_VERSION 0x2004002 /* 2.0a2 */
11#define FSA_DEBUG
12
13#ifdef FSA_DEBUG
14 #define FSALog(...) NSLog(@"F-Script Anywhere: %@", [NSString stringWithFormat: __VA_ARGS__]);
15 #define FSAShow(obj) CFShow(obj);
16#else
17 #define FSALog(...) ;
18 #define FSAShow(obj) ;
19#endif
20
21#ifdef OBJC_EXPORT
22 extern NSString * FSA_FScriptURL;
23 /* should match FSA_FSCRIPT_MIN_VERSION above */
24 extern NSString * FSA_FScriptMinimumVersion;
25#endif
Note: See TracBrowser for help on using the repository browser.