FreeRDP
Loading...
Searching...
No Matches
iOS/main.m
1/*
2 Main App Entry
3
4 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
5
6 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
7 If a copy of the MPL was not distributed with this file, You can obtain one at
8 http://mozilla.org/MPL/2.0/.
9 */
10
11#import <UIKit/UIKit.h>
12#include <freerdp/client/cmdline.h>
13
14int main(int argc, char *argv[])
15{
16 freerdp_client_warn_deprecated(argc, argv);
17 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
18 int retVal = UIApplicationMain(argc, argv, nil, nil);
19 [pool release];
20 return retVal;
21}