kerneltest/e32test/mmu/t_wsd_dl1.cpp
branchRCL_3
changeset 21 e7d2d738d3c2
equal deleted inserted replaced
20:597aaf25e343 21:e7d2d738d3c2
       
     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 // e32test\mmu\t_wsd_dl1.cpp
       
    15 //
       
    16 
       
    17 // MMH file will define	T_WSD_DL1
       
    18 #include "t_wsd_tst.h"
       
    19 
       
    20 // Exported writable static data
       
    21 EXPORT_D TInt32 ExportedData = 0x717a1ee7;
       
    22 
       
    23 // Exported Function
       
    24 EXPORT_C TInt CheckExportedDataAddress(void* aDataAddr)
       
    25 	{
       
    26 	RDebug::Printf("CheckExportedDataAddress: ExportedData@%08x, aDataAddr %08x",
       
    27 		&ExportedData, aDataAddr);
       
    28 	return aDataAddr == (void*)&ExportedData ? KErrNone : KErrGeneral;
       
    29 	}
       
    30