CocoaSplit/StreamServicePlugins/CSTwitchStreamServicePlugin/TwitchStreamServiceViewController.h
Zakk f321f71dfe Split File and RTMP outputs into separate types.
Twitch output config now has a 'fetch stream key' button that does OAuth authentication and then fetches the user's stream key.
2016-07-17 00:18:36 -04:00

22 lines
509 B
Objective-C

//
// TwitchStreamServiceViewController.h
// CSTwitchStreamServicePlugin
//
// Created by Zakk on 8/29/14.
// Copyright (c) 2014 Zakk. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "TwitchStreamService.h"
#import <WebKit/WebKit.h>
@interface TwitchStreamServiceViewController : NSViewController <WebPolicyDelegate>
@property (weak) TwitchStreamService *serviceObj;
@property (strong) NSWindow *authWindow;
@property (strong) WebView *authWebView;
- (IBAction)doTwitchAuth:(id)sender;
@end