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 // e32\ewsrv\co_utl.cpp
20 EXPORT_C void Panic(TConsolePanic aPanic)
22 // Panic the client side console code
26 User::Panic(_L("Console-TWIN"),aPanic);
29 EXPORT_C TKeyCode TConsoleKey::Code() const
35 return((*((TConsoleKey *)this))().iCode);
38 EXPORT_C TInt TConsoleKey::Modifiers() const
40 // Return the key modifiers
44 return((*((TConsoleKey *)this))().iModifiers);
47 EXPORT_C TInt TConsoleKey::Type() const
49 // Return the key type
53 return((*((TConsoleKey *)this))().iType);
56 EXPORT_C TPoint TConsoleKey::MousePos() const
58 // Return the mouse position
62 return((*((TConsoleKey *)this))().iMousePos);