Update contrib.
1 // Copyright (c) 1997-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32test\dll\t_dlla1.cpp
20 const TInt KAmountOfBss=0x1004;
21 TInt someBss[KAmountOfBss];
24 TFullName ProcessName(RProcess().FullName());
25 TFullName ThreadName(RThread().FullName());
32 TInt (*function)()=&AnyOldFunction;
34 EXPORT_C TInt AFunction()
36 if ((*function)()!=0x56789012)
39 for (i=0; i<KAmountOfBss; i++)
43 // RDebug::Print(_L("i=%x addr %08x data %08x"),i,&someBss[i], someBss[i]);
51 { return ++somedata; }
53 EXPORT_C TFullName& GetProcessName()
58 EXPORT_C TFullName& GetThreadName()