mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 23:35:59 +00:00
- now store host uuid and mac address - use uuid to check for duplicate hosts - try local and external IPs - pair status is shown - server status is shown - validate host when manually adding
25 lines
779 B
Objective-C
25 lines
779 B
Objective-C
//
|
|
// MainFrameViewController.h
|
|
// Limelight-iOS
|
|
//
|
|
// Created by Diego Waxemberg on 1/17/14.
|
|
// Copyright (c) 2014 Diego Waxemberg. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "DiscoveryManager.h"
|
|
#import "PairManager.h"
|
|
#import "StreamConfiguration.h"
|
|
#import "UIComputerView.h"
|
|
#import "UIAppView.h"
|
|
#import "AppManager.h"
|
|
#import "SWRevealViewController.h"
|
|
|
|
@interface MainFrameViewController : UICollectionViewController <DiscoveryCallback, PairCallback, HostCallback, AppCallback, AppAssetCallback, NSURLConnectionDelegate, SWRevealViewControllerDelegate>
|
|
@property (strong, nonatomic) IBOutlet UIButton *limelightLogoButton;
|
|
@property (weak, nonatomic) IBOutlet UIBarButtonItem *computerNameButton;
|
|
|
|
+ (StreamConfiguration*) getStreamConfiguration;
|
|
|
|
@end
|