mirror of
https://github.com/ish-app/ish.git
synced 2025-12-08 17:36:02 +00:00
23 lines
490 B
Objective-C
23 lines
490 B
Objective-C
//
|
|
// ViewController.h
|
|
// iSH
|
|
//
|
|
// Created by Theodore Dubois on 10/17/17.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "Terminal.h"
|
|
|
|
@interface TerminalViewController : UIViewController
|
|
|
|
@property (nonatomic) Terminal *terminal;
|
|
|
|
- (void)startNewSession;
|
|
- (void)reconnectSessionFromTerminalUUID:(NSUUID *)uuid;
|
|
@property (readonly) NSUUID *sessionTerminalUUID; // 0 means invalid
|
|
@property UISceneSession *sceneSession API_AVAILABLE(ios(13.0));
|
|
|
|
@end
|
|
|
|
extern struct tty_driver ios_tty_driver;
|