forked from kennytm/iphone-private-frameworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSBTVOutController.h
36 lines (31 loc) · 1000 Bytes
/
SBTVOutController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* This header is generated by class-dump-z 0.2-1.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import <Foundation/NSObject.h>
#import "SBTVOutController.h"
#import <Availability2.h>
@interface SBTVOutController : NSObject {
int _tvOutMode;
}
@property(assign, nonatomic) int tvOutMode;
+(id)sharedInstance;
// inherited: -(id)init;
// inherited: -(void)dealloc;
-(void)setIntialTVModeIfNeeded;
-(void)updateSettings;
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2
@property(readonly, assign, nonatomic) BOOL isTVSignalTypeDigital;
-(BOOL)updateLayerKitSettings;
#else
-(void)updateLayerKitSettings;
#endif
@end
@interface SBTVOutController (Private) // the actual category name is (private), but C++ rejects this.
-(void)_handleIapServerConnectionDied;
-(void)_tetherSettingChanged:(id)changed __OSX_AVAILABLE_STARTING(__MAC_NA, __IPHONE_3_2);
-(void)startListeningForSettingsChanges;
-(void)stopListeningForSettingsChanges;
@end