Blob Blame History Raw
//
//  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>
{
@public
	NSWindow* window;
	rdpContext* context;
	MRDPView* mrdpView;
}

- (void) rdpConnectError: (NSString*) customMessage;

@property (assign) IBOutlet NSWindow *window;
@property (assign) rdpContext *context;

@end