0
|
1 |
// Copyright (c) 1994-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 the License "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".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
// e32\include\e32cmn_private.h
|
|
15 |
//
|
|
16 |
// WARNING: This file contains some APIs which are internal and are subject
|
|
17 |
// to change without notice. Such APIs should therefore not be used
|
|
18 |
// outside the Kernel and Hardware Services package.
|
|
19 |
//
|
|
20 |
|
|
21 |
#ifndef __E32CMN_PRIVATE_H__
|
|
22 |
#define __E32CMN_PRIVATE_H__
|
|
23 |
#include <e32const.h>
|
|
24 |
#include <e32const_private.h>
|
|
25 |
|
|
26 |
#include <e32des8.h>
|
|
27 |
#include <e32des8_private.h>
|
|
28 |
#ifndef __KERNEL_MODE__
|
|
29 |
#include <e32des16.h>
|
|
30 |
#include <e32des16_private.h>
|
|
31 |
#endif
|
|
32 |
|
|
33 |
|
|
34 |
/**
|
|
35 |
@internalTechnology
|
|
36 |
*/
|
|
37 |
struct SRAllocatorBurstFail {TInt iBurst; TInt iRate; TInt iUnused[2];};
|
|
38 |
|
|
39 |
/**
|
|
40 |
@internalTechnology
|
|
41 |
*/
|
|
42 |
typedef TBuf<KMaxKernelName> TKName;
|
|
43 |
|
|
44 |
/**
|
|
45 |
@internalTechnology
|
|
46 |
*/
|
|
47 |
typedef TBuf<KMaxInfoName> TInfoName;
|
|
48 |
|
|
49 |
/**
|
|
50 |
@internalComponent
|
|
51 |
*/
|
|
52 |
typedef TBuf<KMaxDeviceInfo> TDeviceInfo;
|
|
53 |
|
|
54 |
/**
|
|
55 |
@internalComponent
|
|
56 |
*/
|
|
57 |
typedef TBuf<KMaxPassword> TPassword;
|
|
58 |
|
|
59 |
/** Default value to clear all data to committed to a chunk to.
|
|
60 |
@see TChunkCreateInfo::SetClearByte()
|
|
61 |
@see RChunk::Create()
|
|
62 |
@internalComponent
|
|
63 |
*/
|
|
64 |
const TUint8 KChunkClearByteDefault = 0x3;
|
|
65 |
|
|
66 |
/**@internalComponent */
|
|
67 |
const TUint32 KEmulatorImageFlagAllowDllData = 0x01;
|
|
68 |
|
|
69 |
#endif //__E32CMN_H__
|