mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-06-11 16:49:42 +08:00
21 lines
386 B
Objective-C
21 lines
386 B
Objective-C
//
|
|
// main.m
|
|
// shadowsocks-iOS
|
|
//
|
|
// Created by clowwindy on 12-12-27.
|
|
// Copyright (c) 2012年 clowwindy. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "AppDelegate.h"
|
|
#import "local.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// @autoreleasepool {
|
|
// return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
// }
|
|
local_main();
|
|
}
|