sl@0
|
1 |
// Copyright (c) 1997-2010 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 |
// estor.dll Stream store management
|
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 |
// Define this macro only when the edbms.mmh file is present in
|
sl@0
|
23 |
// the /epoc32/include folder.
|
sl@0
|
24 |
#ifdef SYMBIAN_CUSTOM_STORE_BUFFER_SIZES
|
sl@0
|
25 |
#include "estor.mmh"
|
sl@0
|
26 |
#endif
|
sl@0
|
27 |
|
sl@0
|
28 |
// The project release file
|
sl@0
|
29 |
SOURCEPATH ../group
|
sl@0
|
30 |
|
sl@0
|
31 |
// The component build proper...
|
sl@0
|
32 |
|
sl@0
|
33 |
target estor.dll
|
sl@0
|
34 |
CAPABILITY All
|
sl@0
|
35 |
targettype dll
|
sl@0
|
36 |
UID 0x1000008d 0x10003b0d
|
sl@0
|
37 |
VENDORID 0x70000001
|
sl@0
|
38 |
|
sl@0
|
39 |
UNPAGED
|
sl@0
|
40 |
|
sl@0
|
41 |
SMPSAFE
|
sl@0
|
42 |
|
sl@0
|
43 |
//CodeWarrior compilation options - disable the "illegal pragma" warning
|
sl@0
|
44 |
OPTION CW -w noillpragmas
|
sl@0
|
45 |
|
sl@0
|
46 |
userinclude ../INC
|
sl@0
|
47 |
OS_LAYER_SYSTEMINCLUDE_SYMBIAN
|
sl@0
|
48 |
userinclude ../../../../security/crypto/weakcrypto/inc
|
sl@0
|
49 |
|
sl@0
|
50 |
SOURCEPATH ../UBTREE
|
sl@0
|
51 |
source UB_FIX.CPP UB_INL.CPP UB_KEY.CPP UB_NODE.CPP UB_TREE.CPP UB_UTL.CPP
|
sl@0
|
52 |
|
sl@0
|
53 |
SOURCEPATH ../UCONT
|
sl@0
|
54 |
source UC_SET.CPP UC_UTL.CPP
|
sl@0
|
55 |
|
sl@0
|
56 |
SOURCEPATH ../UCRYPT
|
sl@0
|
57 |
source UE_FLTR.CPP UE_STOR.CPP UE_STRM.CPP UE_UTL.CPP
|
sl@0
|
58 |
|
sl@0
|
59 |
SOURCEPATH ../UFILE
|
sl@0
|
60 |
source UF_BUF.CPP UF_DICT.CPP UF_DIR.CPP UF_PERM.CPP UF_STOR.CPP
|
sl@0
|
61 |
source UF_STRM.CPP UF_UTL.CPP
|
sl@0
|
62 |
|
sl@0
|
63 |
SOURCEPATH ../ULIB
|
sl@0
|
64 |
source UL_UTL.CPP
|
sl@0
|
65 |
|
sl@0
|
66 |
SOURCEPATH ../UMEM
|
sl@0
|
67 |
source UM_BUF.CPP UM_STOR.CPP UM_STRM.CPP UM_UTL.CPP
|
sl@0
|
68 |
|
sl@0
|
69 |
SOURCEPATH ../UPAGE
|
sl@0
|
70 |
source UP_CACHE.CPP UP_FILE.CPP UP_PAGE.CPP UP_STOR.CPP UP_UTL.CPP
|
sl@0
|
71 |
|
sl@0
|
72 |
SOURCEPATH ../USTOR
|
sl@0
|
73 |
source UT_COLL.CPP UT_DICT.CPP UT_EMBED.CPP UT_MAP.CPP UT_PERM.CPP
|
sl@0
|
74 |
source UT_STOR.CPP UT_STRM.CPP UT_SWZ.CPP UT_UTL.CPP UT_Iter.cpp
|
sl@0
|
75 |
|
sl@0
|
76 |
SOURCEPATH ../USTRM
|
sl@0
|
77 |
source US_BUF.CPP US_FLTR.CPP US_FRAME.CPP US_FUNC.CPP US_HOST.CPP
|
sl@0
|
78 |
source US_IO.CPP US_SHARE.CPP US_STRM.CPP US_UTL.CPP US_UCMP.CPP
|
sl@0
|
79 |
|
sl@0
|
80 |
nostrictdef
|
sl@0
|
81 |
|
sl@0
|
82 |
deffile estor3.def //EKA2 kernel - only PBE, INT64
|
sl@0
|
83 |
|
sl@0
|
84 |
library euser.lib efsrv.lib
|
sl@0
|
85 |
|
sl@0
|
86 |
start wins
|
sl@0
|
87 |
baseaddress 0x41200000
|
sl@0
|
88 |
end
|