Last change
on this file since 217 was
217,
checked in by rchin, 15 years ago
|
- Updated to new mach_inject with support for x86
- Updated nib files to 10.2+ format so that future updates to the f-script framework won't break fsa
- Adjusted some code to work with the new x86 mach_inject (sends an additional argument)
- Updates code to work with newer defines in cctools
|
File size:
651 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.2b1" |
---|
11 | #define FSA_FSCRIPT_MIN_VERSION 0x1252001 /* 1.2.5d1 */ |
---|
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.