20 lines
534 B
C
20 lines
534 B
C
|
//
|
||
|
// SUUtilities.h
|
||
|
// Sparkle
|
||
|
//
|
||
|
// Created by Andy Matuschak on 3/12/06.
|
||
|
// Copyright 2006 Andy Matuschak. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
id SUInfoValueForKey(NSString *key);
|
||
|
NSString *SUHostAppName();
|
||
|
NSString *SUHostAppVersion();
|
||
|
NSString *SUHostAppVersionString();
|
||
|
|
||
|
NSComparisonResult SUStandardVersionComparison(NSString * versionA, NSString * versionB);
|
||
|
|
||
|
// If running make localizable-strings for genstrings, ignore the error on this line.
|
||
|
NSString *SULocalizedString(NSString *key, NSString *comment);
|