FreeRDP/client/Mac/cli/AppDelegate.h
dev dd56308bde [client,mac] Simplify builder
* Build MacFreeRDP as normal application, let the bundling out of
  building
* Add a bunding script allowing to create a MacFreeRDP with all
  dependencies installed
2023-12-05 09:21:23 +01:00

27 lines
437 B
Objective-C

//
// AppDelegate.h
// MacClient2
//
// Created by Benoît et Kathy on 2013-05-08.
//
//
#import <Cocoa/Cocoa.h>
#import <MRDPView.h>
#import <mfreerdp.h>
@interface AppDelegate : NSObject <NSApplicationDelegate>
{
@public
NSWindow *window;
rdpContext *context;
MRDPView *mrdpView;
}
- (void)rdpConnectError:(NSString *)customMessage;
@property(assign) IBOutlet NSWindow *window;
@property(assign) rdpContext *context;
@end