Patch configure so that we dont need a seperate spec file for x86_64. Pass info about...
[AROS.git] / arch / all-ios / bootstrap / appdelegate.h
blob1b237517fb8f8c60a7930ef1924ff2745fb982b7
1 #import <UIKit/UIKit.h>
3 extern int _argc;
4 extern char **_argv;
6 @interface BootstrapDelegate:NSObject<UIApplicationDelegate, UIAlertViewDelegate>
8 @private
9 UIAlertView *alert;
10 int rc;
13 @property(nonatomic, retain) UIAlertView *alert;
14 @property int rc;
16 - (void)ShowAlert:(NSString *)text withTitle:(NSString *)title;
18 @end