equal
deleted
inserted
replaced
|
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\device\d_lddtunraroundtimetest.inl |
|
15 // |
|
16 // |
|
17 |
|
18 #ifndef __KERNEL_MODE__ |
|
19 inline TInt RLddTest1::Open() |
|
20 { return DoCreate(KLddName,TVersion(0,1,1),KNullUnit,NULL,NULL); } |
|
21 inline TInt RLddTest1::Test_getTimerTicks(TUint &time) |
|
22 { return DoControl(EGET_TIMERTICKS, (TAny *)&time); } |
|
23 inline TInt RLddTest1::Test_getTimerCount(TUint &time) |
|
24 { return DoControl(EGET_TIMERTICKCOUNT, (TAny *)&time); } |
|
25 inline TInt RLddTest1::Unload() |
|
26 { return User::FreeLogicalDevice(KLddName); } |
|
27 #endif |