Update contrib.
1 // Copyright (c) 1995-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_start3.cpp
19 #include <e32std_private.h>
21 _LIT(KPanicCat,"Start3");
22 #define INIT_VAL 0xadf85458
24 #define test(x) ((void)((x)||(User::Panic(KPanicCat,__LINE__),0)))
35 TUint32 InitData=INIT_VAL;
37 TStartTime::TStartTime()
39 test(InitData==INIT_VAL);
42 iStartTime=User::TickCount();
46 EXPORT_C TUint32 GetStartTime3()
48 return StartTime.iStartTime;