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

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

Info.plists, VERSION.xcconfig: Using Dave Dribin's build configuration
trick to propagate ${CURRENT_MARKETING_VERSION}. Updated for 2.0d2.

InfoPlist.strings: Remove unnecessary repeated localization; update
copyright date.

Read Me: Updated for 2.0d2.

FSAnywhere.[hm]: F-Script 2.0a2 is the minimum version. Remove
FSA_VERSION (it's propagated from CURRENT_MARKETING_VERSION during
build) and turn on FSA_DEBUG.

F-Script Anywhere.xcodeproj: Updated for Xcode 3, Leopard only, etc.
Development build is still broken on inject and Deployment app build
is currently -O0 for debugging.

FSAApp.mm: Grammar/formatting cleanups. Some annoying race conditions
on startup still exist.

File size: 622 bytes
RevLine 
[7]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
[409]10#define FSA_FSCRIPT_MIN_VERSION 0x2004002 /* 2.0a2 */
11#define FSA_DEBUG
[7]12
[153]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.