build/ncp/fshell_platform.iby
author Tom Sutcliffe <thomas.sutcliffe@accenture.com>
Thu, 26 Aug 2010 00:49:35 +0100
changeset 37 534b01198c2d
parent 13 eb50996ae8a8
permissions -rw-r--r--
Added ENotifyKeypresses and ECaptureCtrlC flags to CCommandBase. Commands can now get keypresses and handle ctrl-C via callbacks instead of having to implement custom active objects. As part of this extended the CCommandBase extension interface to MCommandExtensionsV2 for the new virtual functions KeyPressed(TUint aKeyCode, TUint aModifiers) and CtrlCPressed(). sudo now cleans up correctly by using ECaptureCtrlC.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
     1
// fshell_platform.iby
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
     2
// 
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
     3
// Copyright (c) 2010 Accenture. All rights reserved.
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
     4
// This component and the accompanying materials are made available
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
     5
// under the terms of the "Eclipse Public License v1.0"
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
     6
// which accompanies this distribution, and is available
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
     7
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
     8
// 
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
     9
// Initial Contributors:
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    10
// Accenture - Initial contribution
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    11
//
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    12
#ifndef FSHELL_PLATFORM_IBY
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    13
#define FSHELL_PLATFORM_IBY
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    14
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    15
#ifdef FSHELL_MAKESIS
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    16
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    17
;Unique Vendor Name
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    18
:"Accenture"
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    19
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    20
;localised vendor names 
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    21
%{"Accenture"}
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    22
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    23
HASH{"fshell (NCP)"},(FSHELL_UID_SIS),FSHELL_VERSION,0,FSHELL_TIMESTAMP,TYPE=SA
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    24
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    25
#endif
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    26
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    27
#endif // FSHELL_PLATFORM_IBY
eb50996ae8a8 Added NCP platform. Build fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff changeset
    28