sl@0
|
1 |
// Copyright (c) 1995-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 the License "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 |
// e32\include\e32ldr_private.h
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
/**
|
sl@0
|
18 |
@file
|
sl@0
|
19 |
@internalTechnology
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef __E32LDR_PRIVATE_H__
|
sl@0
|
23 |
#define __E32LDR_PRIVATE_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <e32ldr.h>
|
sl@0
|
26 |
#include <e32cmn.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
|
sl@0
|
29 |
const TInt KMaxLibraryEntryPoints=0x100;
|
sl@0
|
30 |
|
sl@0
|
31 |
//
|
sl@0
|
32 |
// Loader version number.
|
sl@0
|
33 |
//
|
sl@0
|
34 |
const TInt KLoaderMajorVersionNumber=1;
|
sl@0
|
35 |
const TInt KLoaderMinorVersionNumber=0;
|
sl@0
|
36 |
|
sl@0
|
37 |
//
|
sl@0
|
38 |
// IPC messages to the loader
|
sl@0
|
39 |
//
|
sl@0
|
40 |
enum TLoaderMsg
|
sl@0
|
41 |
{
|
sl@0
|
42 |
ELoadProcess=1,
|
sl@0
|
43 |
ELoadLibrary=2,
|
sl@0
|
44 |
ELoadLogicalDevice=3,
|
sl@0
|
45 |
ELoadPhysicalDevice=4,
|
sl@0
|
46 |
ELoadLocale=5,
|
sl@0
|
47 |
ELoadFileSystem=6,
|
sl@0
|
48 |
EGetInfo=7,
|
sl@0
|
49 |
ELoaderDebugFunction=8,
|
sl@0
|
50 |
ELoadFSExtension=9,
|
sl@0
|
51 |
EGetInfoFromHeader=10,
|
sl@0
|
52 |
ELoadFSPlugin=11,
|
sl@0
|
53 |
ELoaderCancelLazyDllUnload=12,
|
sl@0
|
54 |
ELdrDelete=13,
|
sl@0
|
55 |
ECheckLibraryHash=14,
|
sl@0
|
56 |
ELoadFSProxyDrive=15,
|
sl@0
|
57 |
ELoadCodePage=16,
|
sl@0
|
58 |
EMaxLoaderMsg
|
sl@0
|
59 |
};
|
sl@0
|
60 |
//
|
sl@0
|
61 |
// Loader message arguments:
|
sl@0
|
62 |
// 0 = TLdrInfo
|
sl@0
|
63 |
// 1 = Filename
|
sl@0
|
64 |
// 2 = Command line (process) or path (library)
|
sl@0
|
65 |
//
|
sl@0
|
66 |
class TLdrInfo
|
sl@0
|
67 |
{
|
sl@0
|
68 |
public:
|
sl@0
|
69 |
IMPORT_C TLdrInfo(); // for BC
|
sl@0
|
70 |
public:
|
sl@0
|
71 |
TUidType iRequestedUids;
|
sl@0
|
72 |
TOwnerType iOwnerType;
|
sl@0
|
73 |
TInt iHandle;
|
sl@0
|
74 |
TUint32 iSecureId;
|
sl@0
|
75 |
TUint32 iRequestedVersion;
|
sl@0
|
76 |
TInt iMinStackSize; // Size of new process stack
|
sl@0
|
77 |
};
|
sl@0
|
78 |
|
sl@0
|
79 |
|
sl@0
|
80 |
#ifndef __KERNEL_MODE__
|
sl@0
|
81 |
#include <e32std.h>
|
sl@0
|
82 |
//
|
sl@0
|
83 |
// Loader client class
|
sl@0
|
84 |
//
|
sl@0
|
85 |
class RLoader : public RSessionBase
|
sl@0
|
86 |
{
|
sl@0
|
87 |
public:
|
sl@0
|
88 |
IMPORT_C TInt Connect();
|
sl@0
|
89 |
TVersion Version() const;
|
sl@0
|
90 |
TInt LoadProcess(TInt& aHandle, const TDesC& aFileName, const TDesC& aCommand, const TUidType& aUidType, TOwnerType aType);
|
sl@0
|
91 |
IMPORT_C TInt LoadLibrary(TInt& aHandle, const TDesC& aFileName, const TDesC& aPath, const TUidType& aType, TUint32 aModuleVersion);
|
sl@0
|
92 |
IMPORT_C TInt GetInfo(const TDesC& aFileName, TDes8& aInfoBuf);
|
sl@0
|
93 |
TInt LoadDeviceDriver(const TDesC& aFileName, TInt aDeviceType);
|
sl@0
|
94 |
IMPORT_C TInt DebugFunction(TInt aFunction, TInt a1, TInt a2, TInt a3);
|
sl@0
|
95 |
TInt LoadLocale(const TDesC& aLocaleDllName, TLibraryFunction* aExportList);
|
sl@0
|
96 |
TInt GetInfoFromHeader(const TDesC8& aHeader, TDes8& aInfoBuf);
|
sl@0
|
97 |
IMPORT_C TInt CancelLazyDllUnload();
|
sl@0
|
98 |
IMPORT_C TInt Delete(const TDesC& aFileName);
|
sl@0
|
99 |
IMPORT_C TInt CheckLibraryHash(const TDesC& aFileName, TBool aValidateHash=EFalse);
|
sl@0
|
100 |
TInt LoadProcess(TInt& aHandle, const TDesC& aFileName, const TDesC& aCommand, const TUidType& aUidType, TInt aMinStackSize, TOwnerType aType);
|
sl@0
|
101 |
public:
|
sl@0
|
102 |
#ifdef __ARMCC__
|
sl@0
|
103 |
// workaround for possible EDG bug (!!)
|
sl@0
|
104 |
inline TInt SendReceive(TInt aFunction,const TIpcArgs& aArgs) const
|
sl@0
|
105 |
{ return RSessionBase::SendReceive(aFunction, aArgs); }
|
sl@0
|
106 |
#else
|
sl@0
|
107 |
using RSessionBase::SendReceive;
|
sl@0
|
108 |
#endif
|
sl@0
|
109 |
};
|
sl@0
|
110 |
#endif
|
sl@0
|
111 |
|
sl@0
|
112 |
//
|
sl@0
|
113 |
// Information required to create a new code segment
|
sl@0
|
114 |
//
|
sl@0
|
115 |
enum TCodeSegAttributes
|
sl@0
|
116 |
{
|
sl@0
|
117 |
ECodeSegAttKernel =0x00000001,
|
sl@0
|
118 |
ECodeSegAttGlobal =0x00000002,
|
sl@0
|
119 |
ECodeSegAttFixed =0x00000004,
|
sl@0
|
120 |
ECodeSegAttABIMask =0x00000018, // same values as in image header
|
sl@0
|
121 |
ECodeSegAttCodePaged =0x00000200, // the code seg is demand paged
|
sl@0
|
122 |
ECodeSegAttDataPaged =0x00002000, // the code seg static data is demand paged
|
sl@0
|
123 |
ECodeSegAttHDll =(TInt)0x80000000,// Emulator host file type: 1=DLL, 0=EXE
|
sl@0
|
124 |
ECodeSegAttExpVer =0x40000000, // Filename is explicitly versioned
|
sl@0
|
125 |
ECodeSegAttNmdExpData =0x20000000, // Named symbol export data in code seg
|
sl@0
|
126 |
ECodeSegAttSMPSafe =0x10000000, // code seg and its static dependencies are SMP safe
|
sl@0
|
127 |
ECodeSegAttAddrNotUnique =0x08000000, // run address not globally unique (may overlap other codesegs)
|
sl@0
|
128 |
};
|
sl@0
|
129 |
|
sl@0
|
130 |
// forward declarations from file server
|
sl@0
|
131 |
class RFile;
|
sl@0
|
132 |
class RFs;
|
sl@0
|
133 |
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
A Handle used to identify a file on storage media.
|
sl@0
|
136 |
@internalTechnology
|
sl@0
|
137 |
*/
|
sl@0
|
138 |
class RFileClamp
|
sl@0
|
139 |
{
|
sl@0
|
140 |
public:
|
sl@0
|
141 |
inline RFileClamp()
|
sl@0
|
142 |
{
|
sl@0
|
143 |
iCookie[0] = 0;
|
sl@0
|
144 |
iCookie[1] = 0;
|
sl@0
|
145 |
}
|
sl@0
|
146 |
IMPORT_C TInt Clamp(RFile& aFile);
|
sl@0
|
147 |
IMPORT_C TInt Close(RFs& aFs);
|
sl@0
|
148 |
|
sl@0
|
149 |
public:
|
sl@0
|
150 |
TInt64 iCookie[2];
|
sl@0
|
151 |
};
|
sl@0
|
152 |
|
sl@0
|
153 |
|
sl@0
|
154 |
class TCodeSegCreateInfo
|
sl@0
|
155 |
{
|
sl@0
|
156 |
public:
|
sl@0
|
157 |
TBuf8<KMaxFileName> iFileName; // not including {MMMMmmmm} version info
|
sl@0
|
158 |
TUidType iUids; // uid1 indicates EXE or DLL
|
sl@0
|
159 |
TUint32 iAttr;
|
sl@0
|
160 |
TInt iCodeSize;
|
sl@0
|
161 |
TInt iTextSize;
|
sl@0
|
162 |
TInt iDataSize;
|
sl@0
|
163 |
TInt iBssSize;
|
sl@0
|
164 |
TInt iTotalDataSize;
|
sl@0
|
165 |
TUint32 iEntryPtVeneer; // address of first instruction to be called
|
sl@0
|
166 |
TUint32 iFileEntryPoint; // address of entry point within this code segment
|
sl@0
|
167 |
TInt iDepCount;
|
sl@0
|
168 |
TUint32 iExportDir;
|
sl@0
|
169 |
TInt iExportDirCount;
|
sl@0
|
170 |
TUint32 iCodeLoadAddress; // 0 for RAM loaded code, else pointer to TRomImageHeader
|
sl@0
|
171 |
TUint32 iCodeRunAddress;
|
sl@0
|
172 |
TUint32 iDataLoadAddress;
|
sl@0
|
173 |
TUint32 iDataRunAddress;
|
sl@0
|
174 |
TUint32 iExceptionDescriptor;
|
sl@0
|
175 |
TInt iRootNameOffset;
|
sl@0
|
176 |
TInt iRootNameLength;
|
sl@0
|
177 |
TInt iExtOffset;
|
sl@0
|
178 |
TUint32 iModuleVersion;
|
sl@0
|
179 |
SSecurityInfo iS;
|
sl@0
|
180 |
TAny* iHandle; // pointer to kernel-side DCodeSeg object
|
sl@0
|
181 |
TInt iClientProcessHandle; // handle to client process for user DLL loads
|
sl@0
|
182 |
/** Code relocation information stored on loader heap. */
|
sl@0
|
183 |
TUint32* iCodeRelocTable;
|
sl@0
|
184 |
/** Size of code relocation table in bytes. */
|
sl@0
|
185 |
TInt iCodeRelocTableSize;
|
sl@0
|
186 |
/** Import fixup information stored on loader heap. */
|
sl@0
|
187 |
TUint32* iImportFixupTable;
|
sl@0
|
188 |
/** Size of import fixup table in bytes. */
|
sl@0
|
189 |
TInt iImportFixupTableSize;
|
sl@0
|
190 |
/** Offset to apply to each code address in the image when it is fixed up. */
|
sl@0
|
191 |
TUint32 iCodeDelta;
|
sl@0
|
192 |
/** Offset to apply to each data address in the image when it is fixed up. */
|
sl@0
|
193 |
TUint32 iDataDelta;
|
sl@0
|
194 |
/**
|
sl@0
|
195 |
Whether the code is paged. If this is set, then
|
sl@0
|
196 |
TCodeSegCreateInfo::iCodeRelocTable[Size] and
|
sl@0
|
197 |
TCodeSegCreateInfo::iImportFixupTable[Size] contain fixup information
|
sl@0
|
198 |
which the kernel uses to fix up each page.
|
sl@0
|
199 |
(They may be null if the binary has no imports or no code section.)
|
sl@0
|
200 |
*/
|
sl@0
|
201 |
TBool iUseCodePaging;
|
sl@0
|
202 |
/** The UID of the compression scheme in use. */
|
sl@0
|
203 |
TUint32 iCompressionType;
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
Start of compressed pages within the file. The kernel uses
|
sl@0
|
206 |
this to load compressed pages from byte-pair files when demand
|
sl@0
|
207 |
paging.
|
sl@0
|
208 |
*/
|
sl@0
|
209 |
TInt32* iCodePageOffsets;
|
sl@0
|
210 |
/** Where (possibly compressed) object code starts in iFile. */
|
sl@0
|
211 |
TInt iCodeStartInFile;
|
sl@0
|
212 |
/** Length of (possibly compressed) object code in iFile. */
|
sl@0
|
213 |
TInt iCodeLengthInFile;
|
sl@0
|
214 |
/** Information about block map entries in iCodeBlockMapEntries. */
|
sl@0
|
215 |
SBlockMapInfoBase iCodeBlockMapCommon;
|
sl@0
|
216 |
/** Where object code is located on the media. */
|
sl@0
|
217 |
TBlockMapEntryBase* iCodeBlockMapEntries;
|
sl@0
|
218 |
/** Size of block map entry array in bytes. */
|
sl@0
|
219 |
TInt iCodeBlockMapEntriesSize;
|
sl@0
|
220 |
/**
|
sl@0
|
221 |
File clamp cookie, used to delete the file when the
|
sl@0
|
222 |
codeseg is destroyed.
|
sl@0
|
223 |
*/
|
sl@0
|
224 |
RFileClamp iFileClamp;
|
sl@0
|
225 |
public:
|
sl@0
|
226 |
IMPORT_C TPtrC8 RootName() const;
|
sl@0
|
227 |
};
|
sl@0
|
228 |
|
sl@0
|
229 |
//
|
sl@0
|
230 |
// Information required to create a new process
|
sl@0
|
231 |
//
|
sl@0
|
232 |
class TProcessCreateInfo : public TCodeSegCreateInfo
|
sl@0
|
233 |
{
|
sl@0
|
234 |
public:
|
sl@0
|
235 |
enum TDebugAttributes // must be the same as RLibrary::TInfoV2::TDebugAttributes
|
sl@0
|
236 |
{
|
sl@0
|
237 |
EDebugAllowed = 1<<0, ///< Flags set if executable may be debugged.
|
sl@0
|
238 |
ETraceAllowed = 1<<1 ///< Flags set if executable may be traced.
|
sl@0
|
239 |
};
|
sl@0
|
240 |
/**
|
sl@0
|
241 |
The flags for process's creation. Will be set by the loader from the images
|
sl@0
|
242 |
header flags ready for the kernel to use.
|
sl@0
|
243 |
*/
|
sl@0
|
244 |
enum TProcessCreateFlags
|
sl@0
|
245 |
{
|
sl@0
|
246 |
EDataPagingUnspecified = 0x00000000, ///< Use the global data paging default.
|
sl@0
|
247 |
EDataPaged = 0x00000001, ///< Page the process's data by default.
|
sl@0
|
248 |
EDataUnpaged = 0x00000002, ///< Don't page the process's data by default.
|
sl@0
|
249 |
EDataPagingMask = 0x00000003, ///< Bit mask ofr data paging flags.
|
sl@0
|
250 |
};
|
sl@0
|
251 |
|
sl@0
|
252 |
/** Default constructor that ensures flags are clear. */
|
sl@0
|
253 |
TProcessCreateInfo() : iFlags(0) {};
|
sl@0
|
254 |
|
sl@0
|
255 |
TInt iHeapSizeMin;
|
sl@0
|
256 |
TInt iHeapSizeMax;
|
sl@0
|
257 |
TInt iStackSize;
|
sl@0
|
258 |
TInt iClientHandle; // handle to loader's client
|
sl@0
|
259 |
TInt iProcessHandle; // handle to new DProcess
|
sl@0
|
260 |
TInt iFinalHandle; // handle from loader client to new process
|
sl@0
|
261 |
TOwnerType iOwnerType;
|
sl@0
|
262 |
TProcessPriority iPriority;
|
sl@0
|
263 |
TUint iSecurityZone;
|
sl@0
|
264 |
TUint iDebugAttributes; ///< Set with values from TDebugAttributes.
|
sl@0
|
265 |
TRequestStatus* iDestructStat;
|
sl@0
|
266 |
TUint iFlags; ///< Flags for process creation, should set from TProcessCreateFlags.
|
sl@0
|
267 |
};
|
sl@0
|
268 |
|
sl@0
|
269 |
const TUint KSecurityZoneUnique = 0u;
|
sl@0
|
270 |
const TUint KSecurityZoneLegacyCode = ~0u;
|
sl@0
|
271 |
|
sl@0
|
272 |
//
|
sl@0
|
273 |
// Information required to attach a code segment to a process
|
sl@0
|
274 |
// in the form of a library.
|
sl@0
|
275 |
//
|
sl@0
|
276 |
class TLibraryCreateInfo
|
sl@0
|
277 |
{
|
sl@0
|
278 |
public:
|
sl@0
|
279 |
TAny* iCodeSegHandle; // pointer to kernel-side DCodeSeg object
|
sl@0
|
280 |
TInt iClientHandle; // handle to loader's client
|
sl@0
|
281 |
TInt iLibraryHandle; // handle to new DLibrary
|
sl@0
|
282 |
TOwnerType iOwnerType;
|
sl@0
|
283 |
};
|
sl@0
|
284 |
|
sl@0
|
285 |
//
|
sl@0
|
286 |
// Information required to find an existing code segment
|
sl@0
|
287 |
//
|
sl@0
|
288 |
class TFindCodeSeg
|
sl@0
|
289 |
{
|
sl@0
|
290 |
public:
|
sl@0
|
291 |
TUidType iUids; // required UIDs
|
sl@0
|
292 |
const TAny* iRomImgHdr; // ROM image header if ROM code required, NULL otherwise
|
sl@0
|
293 |
TUint32 iAttrMask; // mask for attributes
|
sl@0
|
294 |
TUint32 iAttrVal; // required value for masked attributes
|
sl@0
|
295 |
TInt iProcess; // handle to process in which code is required to operate
|
sl@0
|
296 |
// not used if kernel only specified
|
sl@0
|
297 |
SSecurityInfo iS; // required capabilities/SID
|
sl@0
|
298 |
TUint32 iModuleVersion; // required version
|
sl@0
|
299 |
TBuf8<KMaxLibraryName> iName; // name to look for - zero length means any
|
sl@0
|
300 |
};
|
sl@0
|
301 |
|
sl@0
|
302 |
//
|
sl@0
|
303 |
// Information required to by the reaper from the codeseg.
|
sl@0
|
304 |
//
|
sl@0
|
305 |
struct TCodeSegLoaderCookie
|
sl@0
|
306 |
{
|
sl@0
|
307 |
RFileClamp iFileClamp;
|
sl@0
|
308 |
TInt64 iStartAddress;
|
sl@0
|
309 |
TInt iDriveNumber;
|
sl@0
|
310 |
};
|
sl@0
|
311 |
|
sl@0
|
312 |
//
|
sl@0
|
313 |
// Loader magic executive functions
|
sl@0
|
314 |
//
|
sl@0
|
315 |
class E32Loader
|
sl@0
|
316 |
{
|
sl@0
|
317 |
public:
|
sl@0
|
318 |
// used by loader only
|
sl@0
|
319 |
IMPORT_C static TInt CodeSegCreate(TCodeSegCreateInfo& aInfo);
|
sl@0
|
320 |
IMPORT_C static TInt CodeSegLoaded(TCodeSegCreateInfo& aInfo);
|
sl@0
|
321 |
IMPORT_C static TInt LibraryCreate(TLibraryCreateInfo& aInfo);
|
sl@0
|
322 |
IMPORT_C static TInt CodeSegOpen(TAny* aHandle, TInt aClientProcessHandle);
|
sl@0
|
323 |
IMPORT_C static void CodeSegClose(TAny* aHandle);
|
sl@0
|
324 |
IMPORT_C static void CodeSegNext(TAny*& aHandle, const TFindCodeSeg& aFind);
|
sl@0
|
325 |
IMPORT_C static void CodeSegInfo(TAny* aHandle, TCodeSegCreateInfo& aInfo);
|
sl@0
|
326 |
IMPORT_C static TInt CodeSegAddDependency(TAny* aImporter, TAny* aExporter);
|
sl@0
|
327 |
IMPORT_C static void CodeSegDeferDeletes();
|
sl@0
|
328 |
IMPORT_C static void CodeSegEndDeferDeletes();
|
sl@0
|
329 |
IMPORT_C static TInt ProcessCreate(TProcessCreateInfo& aInfo, const TDesC8* aCommandLine);
|
sl@0
|
330 |
IMPORT_C static TInt ProcessLoaded(TProcessCreateInfo& aInfo);
|
sl@0
|
331 |
IMPORT_C static TInt CheckClientState(TInt aClientHandle);
|
sl@0
|
332 |
IMPORT_C static TInt DeviceLoad(TAny* aHandle, TInt aType);
|
sl@0
|
333 |
IMPORT_C static TAny* ThreadProcessCodeSeg(TInt aHandle);
|
sl@0
|
334 |
IMPORT_C static void ReadExportDir(TAny* aHandle, TUint32* aDest);
|
sl@0
|
335 |
IMPORT_C static TInt LocaleExports(TAny* aHandle, TLibraryFunction* aExportsList);
|
sl@0
|
336 |
|
sl@0
|
337 |
#ifdef __MARM__
|
sl@0
|
338 |
IMPORT_C static void GetV7StubAddresses(TLinAddr& aExe, TLinAddr& aDll);
|
sl@0
|
339 |
static TInt V7ExeEntryStub();
|
sl@0
|
340 |
static TInt V7DllEntryStub(TInt aReason);
|
sl@0
|
341 |
#endif
|
sl@0
|
342 |
|
sl@0
|
343 |
IMPORT_C static TUint32 PagingPolicy();
|
sl@0
|
344 |
|
sl@0
|
345 |
IMPORT_C static TInt NotifyIfCodeSegDestroyed(TRequestStatus& aStatus);
|
sl@0
|
346 |
IMPORT_C static TInt GetDestroyedCodeSegInfo(TCodeSegLoaderCookie& aCookie);
|
sl@0
|
347 |
|
sl@0
|
348 |
public:
|
sl@0
|
349 |
// used by client side
|
sl@0
|
350 |
static TInt WaitDllLock();
|
sl@0
|
351 |
static TInt ReleaseDllLock();
|
sl@0
|
352 |
static TInt LibraryAttach(TInt aHandle, TInt& aNumEps, TLinAddr* aEpList);
|
sl@0
|
353 |
static TInt LibraryAttached(TInt aHandle);
|
sl@0
|
354 |
static TInt StaticCallList(TInt& aNumEps, TLinAddr* aEpList);
|
sl@0
|
355 |
static TInt LibraryDetach(TInt& aNumEps, TLinAddr* aEpList);
|
sl@0
|
356 |
static TInt LibraryDetached();
|
sl@0
|
357 |
};
|
sl@0
|
358 |
|
sl@0
|
359 |
typedef TInt (*TSupervisorFunction)(TAny*);
|
sl@0
|
360 |
|
sl@0
|
361 |
// Relocation types
|
sl@0
|
362 |
/**
|
sl@0
|
363 |
@internalTechnology
|
sl@0
|
364 |
@released
|
sl@0
|
365 |
*/
|
sl@0
|
366 |
const TUint16 KReservedRelocType = (TUint16)0x0000;
|
sl@0
|
367 |
/**
|
sl@0
|
368 |
@internalTechnology
|
sl@0
|
369 |
@released
|
sl@0
|
370 |
*/
|
sl@0
|
371 |
const TUint16 KTextRelocType = (TUint16)0x1000;
|
sl@0
|
372 |
/**
|
sl@0
|
373 |
@internalTechnology
|
sl@0
|
374 |
@released
|
sl@0
|
375 |
*/
|
sl@0
|
376 |
const TUint16 KDataRelocType = (TUint16)0x2000;
|
sl@0
|
377 |
/**
|
sl@0
|
378 |
@internalTechnology
|
sl@0
|
379 |
@released
|
sl@0
|
380 |
*/
|
sl@0
|
381 |
const TUint16 KInferredRelocType = (TUint16)0x3000;
|
sl@0
|
382 |
|
sl@0
|
383 |
// Compression types
|
sl@0
|
384 |
|
sl@0
|
385 |
/**
|
sl@0
|
386 |
@internalTechnology
|
sl@0
|
387 |
@released
|
sl@0
|
388 |
*/
|
sl@0
|
389 |
const TUint KFormatNotCompressed=0;
|
sl@0
|
390 |
/**
|
sl@0
|
391 |
@internalTechnology
|
sl@0
|
392 |
@released
|
sl@0
|
393 |
*/
|
sl@0
|
394 |
const TUint KUidCompressionDeflate=0x101F7AFC;
|
sl@0
|
395 |
|
sl@0
|
396 |
|
sl@0
|
397 |
const TUint KUidCompressionBytePair=0x102822AA;
|
sl@0
|
398 |
|
sl@0
|
399 |
|
sl@0
|
400 |
#endif // __E32LDR_PRIVATE_H__
|
sl@0
|
401 |
|