Ignore:
Timestamp:
02/13/04 21:01:06 (20 years ago)
Author:
Nicholas Riley
Message:

Integrates SCPatch and mach_inject; unfinished, buggy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cocoa/F-Script Anywhere/Source/FSAnywhere.h

    r19 r153  
    77 *
    88 */
    9 #import <Foundation/Foundation.h>
    109
    11 #define FSA_DEBUG 0
    12 #define FSA_VERSION "1.1.5"
     10#define FSA_VERSION "1.2b1"
     11#define FSA_FSCRIPT_MIN_VERSION 0x1252001 /* 1.2.5d1 */
     12#define FSA_DEBUG
    1313
    14 extern void FSALog(NSString *fmt, ...);
    15 extern NSString * FSA_FScriptURL;
     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 TracChangeset for help on using the changeset viewer.