0
|
1 |
// e32\drivers\medmmc\mmcdp.h
|
|
2 |
//
|
|
3 |
|
|
4 |
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
5 |
// All rights reserved.
|
|
6 |
// This component and the accompanying materials are made available
|
|
7 |
// under the terms of the License "Eclipse Public License v1.0"
|
|
8 |
// which accompanies this distribution, and is available
|
|
9 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
10 |
//
|
|
11 |
// Initial Contributors:
|
|
12 |
// Nokia Corporation - initial contribution.
|
|
13 |
//
|
|
14 |
// Contributors:
|
|
15 |
//
|
|
16 |
// Description:
|
|
17 |
//
|
|
18 |
|
|
19 |
#ifndef __MMCDP_H__
|
|
20 |
#define __MMCDP_H__
|
|
21 |
|
|
22 |
|
|
23 |
#ifdef __TEST_PAGING_MEDIA_DRIVER__
|
|
24 |
const TInt KMmcGetStats = 0x00000001;
|
|
25 |
struct SMmcStats
|
|
26 |
{
|
|
27 |
TInt iReqPage;
|
|
28 |
TInt iReqNormal;
|
|
29 |
TUint16 iNormalFragmenting;
|
|
30 |
TUint8 iClashFragmenting;
|
|
31 |
TUint8 iSpare;
|
|
32 |
};
|
|
33 |
|
|
34 |
#endif // __TEST_PAGING_MEDIA_DRIVER__
|
|
35 |
|
|
36 |
#endif // __MMCDP_H__
|