Last change
on this file since 255 was 224, checked in by rchin, 18 years ago |
Object For Target... button now works as it should.
|
File size:
647 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_VERSION "1.3"
|
---|
11 | #define FSA_FSCRIPT_MIN_VERSION 0x1318000 /* 1.3.1 */
|
---|
12 | #undef FSA_DEBUG
|
---|
13 |
|
---|
14 | #ifdef FSA_DEBUG
|
---|
15 | #define FSALog(...) NSLog(@"F-Script Anywhere: %@", [NSString stringWithFormat: __VA_ARGS__]);
|
---|
16 | #define FSAShow(obj) CFShow(obj);
|
---|
17 | #else
|
---|
18 | #define FSALog(...) ;
|
---|
19 | #define FSAShow(obj) ;
|
---|
20 | #endif
|
---|
21 |
|
---|
22 | #ifdef OBJC_EXPORT
|
---|
23 | extern NSString * FSA_FScriptURL;
|
---|
24 | /* should match FSA_FSCRIPT_MIN_VERSION above */
|
---|
25 | extern NSString * FSA_FScriptMinimumVersion;
|
---|
26 | #endif |
---|
Note:
See
TracBrowser
for help on using the repository browser.