kerneltest/e32test/emul/d_guiconfig.h
changeset 0 a41df078684a
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     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.h
       
    15 // 
       
    16 //
       
    17 
       
    18 #ifndef __D_GUICONFIG_H__
       
    19 #define __D_GUICONFIG_H__
       
    20 
       
    21 #include <e32cmn.h>
       
    22 
       
    23 #ifndef __KERNEL_MODE__
       
    24 #include <e32std.h>
       
    25 #endif
       
    26 
       
    27 _LIT(KLddName,"Test");
       
    28 
       
    29 class TCapsTestV01
       
    30 	{
       
    31 public:
       
    32 	TVersion	iVersion;
       
    33 	};
       
    34 
       
    35 class RGuiConfigTest : public RBusLogicalChannel
       
    36 	{
       
    37 public:
       
    38 	enum TControl
       
    39 		{
       
    40 		EGetConfig=0,
       
    41 		EGenerateKeyEvent=1
       
    42 		};
       
    43 public:
       
    44 	inline TInt Open();
       
    45 	inline TInt GetConfig();
       
    46 	inline TInt GenerateKeyEvent();
       
    47 	static inline TInt Unload();
       
    48 	};
       
    49 
       
    50 #include "d_guiconfig.inl"
       
    51 
       
    52 #endif //__D_GUICONFIG_H__