Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // For the Winscw Emulator only, selects between NGA and Non-NGA version of wsgraphicdrawer.
15 // The default is the non-GCE based version.
16 // To select the NGA version do one of:
17 // 1. Add a line to the epoc.ini file in \epoc32\data like this:
18 // symbian_graphics_use_gce ON
20 // 2. Start epoc.exe with these parameters, (the "--" IS necessary):
21 // -Dsymbian_graphics_use_gce=ON --
23 // 3. epoc.exe can be told to switch to a different initialisation file than epoc.ini, with the -M parameter.
24 // Progress chaining to the real Wserv is logged in epocwind.out.
32 _LIT(KProcessName, "WservSwitch");
35 TInt ChainWservSwitch()
37 _LIT(KWservSwitchNga,"z:\\sys\\bin\\wserv_nga.exe");
38 _LIT(KWservSwitchNonNga,"z:\\sys\\bin\\wserv_nonnga.exe");
39 // need to forward the command parameters to the chained version of Wserv
40 TInt argLen = User::CommandLineLength();
41 HBufC* arg = HBufC::New(argLen);
46 TPtr argPtr = arg->Des();
47 User::CommandLine(argPtr);
49 // NGA or Non-NGA WServ version?
51 UserSvr::HalFunction(EHalGroupEmulator, EEmulatorHalBoolProperty, (TAny*)"symbian_graphics_use_gce", &nga);
54 const TPtrC exeName = nga ? KWservSwitchNga() : KWservSwitchNonNga();
57 RDebug::Print(_L("%S: Starting \"%S\" \"%S\""), &KProcessName, &exeName, &argPtr);
61 TInt err = server.Create(exeName, argPtr, EOwnerThread);
69 // wait for server to start
71 RDebug::Print(_L("%S: waiting on process ..."), &KProcessName);
74 server.Rendezvous(stat);
76 if (stat!=KRequestPending)
81 { // logon OK - start the server
85 User::WaitForRequest(stat);
86 return (server.ExitType() == EExitPanic) ? KErrGeneral : stat.Int();
92 TInt error = ChainWservSwitch();
93 // propagate error to SysStart
97 RDebug::Print(_L("%S: Failed with error %i"), &KProcessName, error);
100 RProcess::Rendezvous(error);