0
|
1 |
// Copyright (c) 2005-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 |
// template\template_variant\replacement_utils\kernel.cia
|
|
15 |
//
|
|
16 |
//
|
|
17 |
|
|
18 |
#include <replacement_utils.h>
|
|
19 |
#include <klib.h>
|
|
20 |
#include <e32cia.h>
|
|
21 |
|
|
22 |
#ifdef USE_REPLACEMENT_UMEMGET
|
|
23 |
|
|
24 |
EXPORT_C __NAKED__ void kumemget32(TAny* /*aKernAddr*/, const TAny* /*aAddr*/, TInt /*aLength*/)
|
|
25 |
{
|
|
26 |
// TO DO (optional): Implement replacement kumemget32
|
|
27 |
}
|
|
28 |
|
|
29 |
EXPORT_C __NAKED__ void umemget32(TAny* /*aKernAddr*/, const TAny* /*aUserAddr*/, TInt /*aLength*/)
|
|
30 |
{
|
|
31 |
// TO DO (optional): Implement replacement umemget32
|
|
32 |
}
|
|
33 |
|
|
34 |
EXPORT_C __NAKED__ void kumemget(TAny* /*aKernAddr*/, const TAny* /*aAddr*/, TInt /*aLength*/)
|
|
35 |
{
|
|
36 |
// TO DO (optional): Implement replacement kumemget
|
|
37 |
}
|
|
38 |
|
|
39 |
EXPORT_C __NAKED__ void umemget(TAny* /*aKernAddr*/, const TAny* /*aUserAddr*/, TInt /*aLength*/)
|
|
40 |
{
|
|
41 |
// TO DO (optional): Implement replacement umemget
|
|
42 |
}
|
|
43 |
|
|
44 |
#endif // USE_REPLACEMENT_UMEMGET
|
|
45 |
|
|
46 |
#ifdef USE_REPLACEMENT_UMEMPUT
|
|
47 |
|
|
48 |
EXPORT_C __NAKED__ void kumemput32(TAny* /*aAddr*/, const TAny* /*aKernAddr*/, TInt /*aLength*/)
|
|
49 |
{
|
|
50 |
// TO DO (optional): Implement replacement kumemput32
|
|
51 |
}
|
|
52 |
|
|
53 |
EXPORT_C __NAKED__ void umemput32(TAny* /*aUserAddr*/, const TAny* /*aKernAddr*/, TInt /*aLength*/)
|
|
54 |
{
|
|
55 |
// TO DO (optional): Implement replacement umemput32
|
|
56 |
}
|
|
57 |
|
|
58 |
EXPORT_C __NAKED__ void kumemput(TAny* /*aAddr*/, const TAny* /*aKernAddr*/, TInt /*aLength*/)
|
|
59 |
{
|
|
60 |
// TO DO (optional): Implement replacement kumemput
|
|
61 |
}
|
|
62 |
|
|
63 |
EXPORT_C __NAKED__ void umemput(TAny* /*aUserAddr*/, const TAny* /*aKernAddr*/, TInt /*aLength*/)
|
|
64 |
{
|
|
65 |
// TO DO (optional): Implement replacement umemput
|
|
66 |
}
|
|
67 |
|
|
68 |
#endif
|