mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 08:24:16 +09:00
This will work for generating an Xcode project from cmake. Still in progress, but initial working version.
20 lines
372 B
Objective-C
20 lines
372 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// MacFreeRDP
|
|
//
|
|
// Created by Thomas Goddard on 5/8/12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "MRDPView.h"
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
@property (assign) IBOutlet MRDPView *mrdpView;
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
|
|
|
|
int rdp_connect();
|
|
@end
|