author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
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 |
// wserv.exe Window server |
sl@0 | 15 |
// |
sl@0 | 16 |
// |
sl@0 | 17 |
|
sl@0 | 18 |
/** |
sl@0 | 19 |
@file |
sl@0 | 20 |
*/ |
sl@0 | 21 |
|
sl@0 | 22 |
#ifdef WINS |
sl@0 | 23 |
#ifdef SYMBIAN_BUILD_GCE |
sl@0 | 24 |
//when GCE switchable builds are enabled, this non-GCE (classic) unit is explicitly named in the emulator |
sl@0 | 25 |
TARGET wserv_nonnga.exe |
sl@0 | 26 |
#else |
sl@0 | 27 |
TARGET wserv.exe |
sl@0 | 28 |
#endif |
sl@0 | 29 |
#else |
sl@0 | 30 |
TARGET wserv_nonnga.exe |
sl@0 | 31 |
#endif |
sl@0 | 32 |
|
sl@0 | 33 |
TARGETTYPE exe |
sl@0 | 34 |
|
sl@0 | 35 |
EPOCSTACKSIZE 0x4000 |
sl@0 | 36 |
// 3Mb max heap for Winscw builds (default 1Mb used for target builds) |
sl@0 | 37 |
#ifdef WINS |
sl@0 | 38 |
EPOCHEAPSIZE 0x00010000 0x00300000 |
sl@0 | 39 |
#endif |
sl@0 | 40 |
EPOCFIXEDPROCESS |
sl@0 | 41 |
CAPABILITY PowerMgmt ReadDeviceData WriteDeviceData ProtServ |
sl@0 | 42 |
|
sl@0 | 43 |
SOURCEPATH ../nonnga/SERVER |
sl@0 | 44 |
|
sl@0 | 45 |
SOURCE ANIMDLL.CPP |
sl@0 | 46 |
SOURCE BITMAP.CPP |
sl@0 | 47 |
SOURCE backedupwindow.cpp |
sl@0 | 48 |
SOURCE CAPKEY.CPP |
sl@0 | 49 |
SOURCE CLIENT.CPP |
sl@0 | 50 |
SOURCE cliwin.cpp |
sl@0 | 51 |
SOURCE debugbar.cpp |
sl@0 | 52 |
SOURCE Direct.CPP |
sl@0 | 53 |
SOURCE EVENT.CPP |
sl@0 | 54 |
SOURCE EVQUEUE.CPP |
sl@0 | 55 |
SOURCE gc.cpp |
sl@0 | 56 |
SOURCE GRAPHICDRAWER.CPP |
sl@0 | 57 |
SOURCE GROUPWIN.CPP |
sl@0 | 58 |
SOURCE INIFILE.CPP |
sl@0 | 59 |
SOURCE KEYBEMUL.CPP |
sl@0 | 60 |
SOURCE KEYCLICK.CPP |
sl@0 | 61 |
SOURCE OBJECT.CPP |
sl@0 | 62 |
SOURCE offscreenbitmap.cpp |
sl@0 | 63 |
SOURCE PASSWORD.CPP |
sl@0 | 64 |
SOURCE playbackgc.cpp |
sl@0 | 65 |
SOURCE POINTER.CPP |
sl@0 | 66 |
SOURCE PRIKEY.CPP |
sl@0 | 67 |
SOURCE redrawmsgwindow.cpp |
sl@0 | 68 |
SOURCE REDRAWQ.CPP |
sl@0 | 69 |
SOURCE ROOTWIN.CPP |
sl@0 | 70 |
SOURCE scrdev.cpp |
sl@0 | 71 |
SOURCE screen.cpp |
sl@0 | 72 |
SOURCE ScreenRedraw.cpp |
sl@0 | 73 |
SOURCE SERVER.CPP |
sl@0 | 74 |
SOURCE SPRITE.CPP |
sl@0 | 75 |
SOURCE TCURSOR.CPP |
sl@0 | 76 |
SOURCE UTILS.CPP |
sl@0 | 77 |
SOURCE walkwindowtree.cpp |
sl@0 | 78 |
SOURCE WINBASE.CPP |
sl@0 | 79 |
SOURCE WINDOW.CPP |
sl@0 | 80 |
SOURCE wnredraw.cpp |
sl@0 | 81 |
SOURCE WSANIMGC.CPP |
sl@0 | 82 |
SOURCE wsfont.cpp |
sl@0 | 83 |
SOURCE WsMemMgr.cpp |
sl@0 | 84 |
SOURCE WSOBJIX.CPP |
sl@0 | 85 |
SOURCE wspluginmanager.cpp |
sl@0 | 86 |
SOURCE WSTOP.CPP |
sl@0 | 87 |
SOURCE wstypes.cpp |
sl@0 | 88 |
USERINCLUDE ../nonnga/SERVER ../SERVER ../inc |
sl@0 | 89 |
OS_LAYER_SYSTEMINCLUDE_SYMBIAN |
sl@0 | 90 |
|
sl@0 | 91 |
LIBRARY bitgdi.lib |
sl@0 | 92 |
LIBRARY ecom.lib |
sl@0 | 93 |
LIBRARY efsrv.lib |
sl@0 | 94 |
LIBRARY ektran.lib |
sl@0 | 95 |
LIBRARY estor.lib |
sl@0 | 96 |
LIBRARY euser.lib |
sl@0 | 97 |
LIBRARY fbscli.lib |
sl@0 | 98 |
LIBRARY gdi.lib |
sl@0 | 99 |
LIBRARY hal.lib |
sl@0 | 100 |
LIBRARY wsgraphicdrawer.lib |
sl@0 | 101 |
|
sl@0 | 102 |
#ifdef WINS |
sl@0 | 103 |
LIBRARY osbwin32.lib |
sl@0 | 104 |
#endif |
sl@0 | 105 |
|
sl@0 | 106 |
START WINS |
sl@0 | 107 |
BASEADDRESS 0x48800000 |
sl@0 | 108 |
END |
sl@0 | 109 |
|
sl@0 | 110 |
UID 268435596 268450592 |
sl@0 | 111 |
VENDORID 0x70000001 |
sl@0 | 112 |
UNPAGED |
sl@0 | 113 |
|
sl@0 | 114 |
//MACRO USE_WS_PERFORMANCE_TRACING |
sl@0 | 115 |
|
sl@0 | 116 |
SMPSAFE |