0
|
1 |
// Copyright (c) 2005-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\emul\d_guiconfig.inl
|
|
15 |
//
|
|
16 |
//
|
|
17 |
|
|
18 |
#ifndef __KERNEL_MODE__
|
|
19 |
inline TInt RGuiConfigTest::Open()
|
|
20 |
{ return DoCreate(KLddName,TVersion(0,1,1),KNullUnit,NULL,NULL); }
|
|
21 |
inline TInt RGuiConfigTest::GetConfig()
|
|
22 |
{ return DoControl(EGetConfig); }
|
|
23 |
inline TInt RGuiConfigTest::GenerateKeyEvent()
|
|
24 |
{ return DoControl(EGenerateKeyEvent); }
|
|
25 |
inline TInt RGuiConfigTest::Unload()
|
|
26 |
{ return User::FreeLogicalDevice(KLddName); }
|
|
27 |
#endif
|