First public contribution.
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.
38 #include "wsgraphicdrawer_stubs.h"
40 FARPROC vector[MAX_ORDINAL+1];
44 void Stop(char* aErrorMessage)
46 void Stop(char* /*aErrorMessage*/)
49 int err = GetLastError();
51 RDebug::Printf("%S, (last error = %i)", aErrorMessage, err);
56 void fill_vector(HINSTANCE aDll)
59 FARPROC address = NULL;
60 for (i=1;i<=MAX_ORDINAL;i++)
62 address = GetProcAddress(aDll, (LPCSTR)i);
65 Stop("... has too few exported functions");
70 address = GetProcAddress(aDll, (LPCSTR)i);
73 Stop("... has too many exported functions");
75 vector[0] = (FARPROC)1; // initialised
78 // redirects DLL calls to GCE or non-GCE implementation
81 // ask HAL which configuration to use
83 UserSvr::HalFunction(EHalGroupEmulator, EEmulatorHalBoolProperty, (TAny*)"symbian_graphics_use_gce", &nga);
84 const char* library = nga ? "wsgraphicdrawer_nga.dll" : "wsgraphicdrawer_nonnga.dll";
87 RDebug::Printf("Redirecting wsgraphicdrawer.dll to \"%s\" ...\n", library);
90 Emulator::Escape(); // prevent deadlock between EKA2 scheduler and MS kernel
91 // try to load selected DLL
92 HINSTANCE instance = LoadLibraryA(library);
97 Stop("... unable to load");
101 fill_vector(instance);
103 RDebug::Printf("... DLL loaded successfully");
108 __declspec(naked) void common_dispatch()
110 _asm cmp dword ptr vector,0 // initialised?
111 _asm je do_init_vector
113 _asm jmp [vector+eax*4]
119 _asm call init_vector
123 _asm jmp call_though_vector