Files
ish/app/AppDelegate.h
2021-12-13 20:00:45 -08:00

29 lines
483 B
Objective-C

//
// AppDelegate.h
// iSH
//
// Created by Theodore Dubois on 10/17/17.
//
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
- (void)exitApp;
#if !ISH_LINUX
+ (int)bootError;
#endif
+ (void)maybePresentStartupMessageOnViewController:(UIViewController *)vc;
@end
#if !ISH_LINUX
extern NSString *const ProcessExitedNotification;
#else
extern NSString *const KernelPanicNotification;
#endif