Re: Daemon with AppKit
Re: Daemon with AppKit
- Subject: Re: Daemon with AppKit
- From: Andreas Höschler <email@hidden>
- Date: Tue, 1 Feb 2005 18:58:47 +0100
Hi Jon,
Thanks, that just makes too much sense. Now on to figuring that part
of the puzzle out.
Thanks again for your help.
int main (int argc, const char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int exitCode = 0;
Controller *controller = [[Controller alloc] init];
[[NSRunLoop currentRunLoop] run];
[controller release];
[pool release];
exit(exitCode);
return exitCode; // ...and make main fit the ANSI spec.
}
Regards,
Andreas
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden