sl@0
|
1 |
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// WCRT0.CPP
|
sl@0
|
15 |
// EPOC32 version of crt0.c for pure C programs, adapted to cause the full Eikon
|
sl@0
|
16 |
// environment to come into being and hence only used with WINS.
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32std.h>
|
sl@0
|
21 |
#include <e32base.h>
|
sl@0
|
22 |
#include <e32svr.h>
|
sl@0
|
23 |
#include <estlib.h>
|
sl@0
|
24 |
#include <estw32.h>
|
sl@0
|
25 |
#include <stdlib.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
extern "C" int wmain (int argc, wchar_t *argv[], wchar_t *envp[]);
|
sl@0
|
28 |
|
sl@0
|
29 |
#ifndef EKA2
|
sl@0
|
30 |
IMPORT_C void RegisterWsExe(const TDesC &aName);
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
|
sl@0
|
33 |
GLDEF_C TInt E32Main()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
CTrapCleanup::New();
|
sl@0
|
36 |
|
sl@0
|
37 |
RWin32Stream::StartServer(); // arrange for access to Win32 stdin/stdout/stderr
|
sl@0
|
38 |
SpawnPosixServerThread(); // arrange for multi-threaded operation
|
sl@0
|
39 |
|
sl@0
|
40 |
int argc=0;
|
sl@0
|
41 |
wchar_t** wargv=0;
|
sl@0
|
42 |
wchar_t** wenvp=0;
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
__crt0(argc,wargv,wenvp); // get args & environment from somewhere
|
sl@0
|
46 |
|
sl@0
|
47 |
#ifndef EKA2
|
sl@0
|
48 |
// Cause the graphical Window Server to come into existence
|
sl@0
|
49 |
RSemaphore sem;
|
sl@0
|
50 |
sem.CreateGlobal(_L("WsExeSem"),0);
|
sl@0
|
51 |
RegisterWsExe(sem.FullName());
|
sl@0
|
52 |
#endif
|
sl@0
|
53 |
|
sl@0
|
54 |
int ret=wmain(argc, wargv, wenvp); // go
|
sl@0
|
55 |
|
sl@0
|
56 |
// no need to explicitly delete the cleanup stack here as all memory used by
|
sl@0
|
57 |
// the process will be released by RProcess::Terminate(), called from inside exit().
|
sl@0
|
58 |
|
sl@0
|
59 |
exit(ret); // to get atexit processing, eventually terminates this process
|
sl@0
|
60 |
|
sl@0
|
61 |
return(KErrNone);
|
sl@0
|
62 |
}
|