sl@0
|
1 |
// Copyright (c) 2005-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 |
// template\template_variant\replacement_utils\replacement_utils.h
|
sl@0
|
15 |
// This header file controls which of the generic utility functions are replaced
|
sl@0
|
16 |
// by the variant. The replacement implmenetations are supplied in the files
|
sl@0
|
17 |
// kernel.cia and common.cia in this directory.
|
sl@0
|
18 |
// The replacement functions are selected by a series of macros as described
|
sl@0
|
19 |
// below:
|
sl@0
|
20 |
// Macro: Functions replaced: Location of replacement:
|
sl@0
|
21 |
// USE_REPLACEMENT_MEMSET memclr common.cia
|
sl@0
|
22 |
// memset
|
sl@0
|
23 |
// USE_REPLACEMENT_MEMCPY wordmove common.cia
|
sl@0
|
24 |
// memmove
|
sl@0
|
25 |
// memcpy
|
sl@0
|
26 |
// USE_REPLACEMENT_UMEMGET kumemget32 kernel.cia
|
sl@0
|
27 |
// umemget32
|
sl@0
|
28 |
// kumemget
|
sl@0
|
29 |
// umemget
|
sl@0
|
30 |
// USE_REPLACEMENT_UMEMPUT kumemput32 kernel.cia
|
sl@0
|
31 |
// umemput32
|
sl@0
|
32 |
// kumemput
|
sl@0
|
33 |
// umemput
|
sl@0
|
34 |
//
|
sl@0
|
35 |
//
|
sl@0
|
36 |
|
sl@0
|
37 |
#ifndef __REPLACEMENT_UTILS_H__
|
sl@0
|
38 |
|
sl@0
|
39 |
//#define USE_REPLACEMENT_MEMSET
|
sl@0
|
40 |
//#define USE_REPLACEMENT_MEMCPY
|
sl@0
|
41 |
//#define USE_REPLACEMENT_UMEMGET
|
sl@0
|
42 |
//#define USE_REPLACEMENT_UMEMPUT
|
sl@0
|
43 |
|
sl@0
|
44 |
#endif
|