diff options
author | dynaflash <[email protected]> | 2009-06-16 19:39:04 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2009-06-16 19:39:04 +0000 |
commit | 9dcc3bcf393efcc2230210248bdcb0aa5f7bb81b (patch) | |
tree | 0fd987a411037ecd1ed86b5bb47dc188813bc154 /macosx/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol copy.h | |
parent | f72bd4b23937ab7b3de50dd763c20ee6f7cfebe4 (diff) |
Macgui: Update Sparkle to 1.5 b6
- Compiles in 64 bit mode
- Requires a DSA signature for downloading updates
- remove over 3 mb of unused localized sparkle nibs.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2545 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol copy.h')
-rw-r--r-- | macosx/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol copy.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/macosx/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol copy.h b/macosx/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol copy.h new file mode 100644 index 000000000..3d11ae873 --- /dev/null +++ b/macosx/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol copy.h @@ -0,0 +1,27 @@ +// +// SUVersionComparisonProtocol.h +// Sparkle +// +// Created by Andy Matuschak on 12/21/07. +// Copyright 2007 Andy Matuschak. All rights reserved. +// + +#ifndef SUVERSIONCOMPARISONPROTOCOL_H +#define SUVERSIONCOMPARISONPROTOCOL_H + +/*! + @protocol + @abstract Implement this protocol to provide version comparison facilities for Sparkle. +*/ +@protocol SUVersionComparison + +/*! + @method + @abstract An abstract method to compare two version strings. + @discussion Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent. +*/ +- (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; + +@end + +#endif |