// // async_askpass_main.m // Bienvenue // // Created by Hamish Allan on 04/06/2008. // Copyright 2008 Hamish Allan. All rights reserved. // #import "AsyncAskPassClient.h" int main(int argc, char *argv[]) { #ifdef DEBUGFULL FOUNDATION_EXPORT BOOL NSZombieEnabled; NSZombieEnabled = YES; #endif if (argc != 2) return -1; NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; AsyncAskPassClient *client = [[AsyncAskPassClient alloc] init]; if (client) { [[NSRunLoop currentRunLoop] run]; [client release]; } [pool release]; return 0; }