Files
ish/app/AppDelegate.h
T
Theodore Dubois 9a349f5a55 scream
2021-08-15 00:34:53 -07:00

30 lines
516 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;
#else
+ (NSString *)panicMessage;
#endif
+ (void)maybePresentStartupMessageOnViewController:(UIViewController *)vc;
@end
#if !ISH_LINUX
extern NSString *const ProcessExitedNotification;
#else
extern NSString *const KernelPanicNotification;
#endif