Sha256: db1e0d87b32ebcaedfbc8edef42f0d91f621be3625f3d7a0811f838d3f0a12d7

Contents?: true

Size: 585 Bytes

Versions: 6

Compression:

Stored size: 585 Bytes

Contents

//
//  main.m
//  Browser
//
//  Created by adam blum on 9/4/08.
//  Copyright __MyCompanyName__ 2008. All rights reserved.
//

#include <signal.h>

#import <UIKit/UIKit.h>
#import "ServerHost.h"
#import "logging/RhoLog.h"
#undef DEFAULT_LOGCATEGORY
#define DEFAULT_LOGCATEGORY "main"

int main(int argc, char *argv[]) {
    
    signal(SIGPIPE, SIG_IGN);
    
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, @"RhoRunnerAppDelegate");
    [pool release];

    RAWLOG_INFO("Exiting the Runner");
    return retVal;
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rhodes-1.5.5 platform/iphone/main.m
rhodes-1.5.4 platform/iphone/main.m
rhodes-1.5.3 platform/iphone/main.m
rhodes-1.5.2 platform/iphone/main.m
rhodes-1.5.1 platform/iphone/main.m
rhodes-1.5.0 platform/iphone/main.m