os/kernelhwsrv/kerneltest/e32test/mmu/t_codepaging_dll.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-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
// e32test\mmu\t_codepaging_dll.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
sl@0
    20
#ifndef __T_CODEPAGING_DLL_H__
sl@0
    21
#define __T_CODEPAGING_DLL_H__
sl@0
    22
sl@0
    23
/// Test function in t_codepaging_dll called to test executing paged code
sl@0
    24
IMPORT_C TInt TestFunction();
sl@0
    25
typedef TInt (*TTestFunction)();
sl@0
    26
const TInt KTestFunctionOrdinal = 1;
sl@0
    27
sl@0
    28
/// Function in t_codepaging_dll2 called to get size and address of test data
sl@0
    29
IMPORT_C const TUint* GetAddressOfData(TInt& aSize);
sl@0
    30
typedef TUint* (*TGetAddressOfDataFunction)(TInt&);
sl@0
    31
const TInt KGetAddressOfDataFunctionOrdinal = 1;
sl@0
    32
sl@0
    33
/// Function in t_codepaging_dll5+6 called to get size and address of test data
sl@0
    34
IMPORT_C void** GetAddressOfRelocatedData(TInt& aSize, void*& aDataValue, void*& aCodeValue);
sl@0
    35
typedef void** (*TGetAddressOfRelocatedDataFunction)(TInt&,void*&,void*&);
sl@0
    36
const TInt KGetAddressOfRelocatedDataFunctionOrdinal = 1;
sl@0
    37
sl@0
    38
#endif