sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // EPOC32 version of crt0.c for pure C programs, adapted to cause the full Eikon sl@0: // environment to come into being and hence only used with WINS. sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: extern "C" int main (int argc, char *argv[], char *envp[]); sl@0: sl@0: #ifndef EKA2 sl@0: IMPORT_C void RegisterWsExe(const TDesC &aName); sl@0: #endif sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: CTrapCleanup::New(); sl@0: sl@0: RWin32Stream::StartServer(); // arrange for access to Win32 stdin/stdout/stderr sl@0: SpawnPosixServerThread(); // arrange for multi-threaded operation sl@0: sl@0: int argc=0; sl@0: char** argv=0; sl@0: char** envp=0; sl@0: sl@0: __crt0(argc,argv,envp); // get args & environment from somewhere sl@0: sl@0: #ifndef EKA2 sl@0: // Cause the graphical Window Server to come into existence sl@0: RSemaphore sem; sl@0: sem.CreateGlobal(_L("WsExeSem"),0); sl@0: RegisterWsExe(sem.FullName()); sl@0: #endif sl@0: sl@0: int ret=main(argc, argv, envp); // go sl@0: sl@0: // no need to explicitly delete the cleanup stack here as all memory used by sl@0: // the process will be released by RProcess::Terminate(), called from inside exit(). sl@0: sl@0: exit(ret); // to get atexit processing, eventually terminates this process sl@0: sl@0: return(KErrNone); sl@0: }