Sha256: 1a0df6444e9512c98188f844748bf9de0dbe178c23b62c54181916633cb07d73
Contents?: true
Size: 548 Bytes
Versions: 66
Compression:
Stored size: 548 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 "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, @"Rhodes"); [pool release]; RAWLOG_INFO("Exiting the Runner"); return retVal; }
Version data entries
66 entries across 66 versions & 1 rubygems