kerneltest/f32test/demandpaging/loader/t_pageldrtstdll.cpp
changeset 0 a41df078684a
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     1 // Copyright (c) 2006-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 // f32test\demandpaging\loader\t_pageldrtst.cpp
       
    15 // 
       
    16 //
       
    17 
       
    18 #include <e32svr.h>
       
    19 #include "u32std.h"
       
    20 #include <e32base.h>
       
    21 #include <e32base_private.h>
       
    22 #include <e32math.h>
       
    23 
       
    24 #define TPS_DECLARE_ARRAY
       
    25 #include "t_pagestress.h"
       
    26 
       
    27 extern "C" EXPORT_C TInt Init()
       
    28 	{
       
    29 	return KErrNone;
       
    30 	}
       
    31 
       
    32 extern "C" EXPORT_C TUint32 FunctionCount()
       
    33 	{
       
    34 	return PAGESTRESS_FUNC_COUNT;
       
    35 	}
       
    36 
       
    37 extern "C" EXPORT_C TInt CallFunction(TInt aParam1, TInt aParam2, TUint32 aIndex)
       
    38 	{
       
    39 	return CallTestFunc(aParam1, aParam2, aIndex);
       
    40 	}
       
    41 
       
    42 
       
    43 extern "C" EXPORT_C TInt SetClose()
       
    44 	{
       
    45 	return KErrNone;
       
    46 	}