Fixed a segfault crash that would occur if you stepped at the end of a script
[macgdbp.git] / Sparkle.framework / Versions / A / Headers / SUInstaller.h
1 //
2 // SUInstaller.h
3 // Sparkle
4 //
5 // Created by Andy Matuschak on 4/10/08.
6 // Copyright 2008 Andy Matuschak. All rights reserved.
7 //
8
9 #ifndef SUINSTALLER_H
10 #define SUINSTALLER_H
11
12 #import <Cocoa/Cocoa.h>
13
14 @interface SUInstaller : NSObject { }
15 + (void)installFromUpdateFolder:(NSString *)updateFolder overHostBundle:(NSBundle *)hostBundle delegate:delegate synchronously:(BOOL)synchronously;
16 + (void)_finishInstallationWithResult:(BOOL)result hostBundle:(NSBundle *)hostBundle error:(NSError *)error delegate:delegate;
17 @end
18
19 @interface NSObject (SUInstallerDelegateInformalProtocol)
20 - (void)installerFinishedForHostBundle:(NSBundle *)hostBundle;
21 - (void)installerForHostBundle:(NSBundle *)hostBundle failedWithError:(NSError *)error;
22 @end
23
24 #endif