FreeRDP/client/Mac/cli/AppDelegate.h

27 lines
459 B
C
Raw Normal View History

//
// AppDelegate.h
// MacClient2
//
// Created by Benoît et Kathy on 2013-05-08.
//
//
#import <Cocoa/Cocoa.h>
#import <MacFreeRDP/MRDPView.h>
#import <MacFreeRDP/mfreerdp.h>
@interface AppDelegate : NSObject <NSApplicationDelegate>
{
2019-11-06 17:24:51 +03:00
@public
NSWindow *window;
rdpContext *context;
MRDPView *mrdpView;
2013-06-23 04:27:23 +04:00
}
2019-11-06 17:24:51 +03:00
- (void)rdpConnectError:(NSString *)customMessage;
2019-11-06 17:24:51 +03:00
@property(assign) IBOutlet NSWindow *window;
@property(assign) rdpContext *context;
@end