FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
Mac/cli/AppDelegate.h
1//
2// AppDelegate.h
3// MacClient2
4//
5// Created by Benoît et Kathy on 2013-05-08.
6//
7//
8
9#import <Cocoa/Cocoa.h>
10#import <MRDPView.h>
11#import <mfreerdp.h>
12
13@interface AppDelegate : NSObject <NSApplicationDelegate>
14{
15 @public
16 NSWindow *window;
17 rdpContext *context;
18 MRDPView *mrdpView;
19}
20
21- (void)rdpConnectError:(NSString *)customMessage;
22
23@property(assign) IBOutlet NSWindow *window;
24@property(assign) rdpContext *context;
25
26@end