-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmain.m
34 lines (29 loc) · 954 Bytes
/
main.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* This file is part of Deblock.
*
* Deblock is open software: you can use or modify it under the
* terms of the Java Research License or optionally a more
* permissive Commercial License.
*
* Deblock is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the Java Research License
* along with Deblock in the file named 'COPYING'.
* If not, see <http://stuff.lhunath.com/COPYING>.
*/
//
// main.m
// Deblock
//
// Created by Maarten Billemont on 16/07/09.
// Copyright lhunath (Maarten Billemont) 2009. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool *pool = [NSAutoreleasePool new];
int retVal = UIApplicationMain(argc, argv, nil, @"DeblockAppDelegate");
[pool drain];
return retVal;
}