securitydialogs/Autolock/PubSub/SecurityUIsPrivatePSKeys.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 26 Jan 2010 15:20:08 +0200
changeset 0 164170e6151a
child 22 6b63ca65093a
permissions -rw-r--r--
Revision: 201004

/*
* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Private Publish&Subscribe definitions of the
*               Security UIs subsystem
*
*/


#ifndef SECURITYUISPRIVATEPSKEYS_H
#define SECURITYUISPRIVATEPSKEYS_H

// INCLUDES

//CONSTANTS

const TUid KPSUidSecurityUIs = { 0x100059b5 };
// =============================================================================
// Security Code UI Originator API
// =============================================================================

// Use TUid KPSUidSecurityUIs = { 0x100059b5 } 

/**
* Used by SecUI to differentiate between ETel API originated and SecUI originated
* security queries.
* Old Shared Data constant name: KSecUIOriginatedQuery
*/
const TUint32 KSecurityUIsSecUIOriginatedQuery = 0x00000301;
enum TSecurityUIsSecUIOriginatedQuery
    {
    ESecurityUIsSecUIOriginatedUninitialized = 0,
    ESecurityUIsETelAPIOriginated,
    ESecurityUIsSecUIOriginated,
    ESecurityUIsSystemLockOriginated
    };

/**
* Used by SecUI to tell if a query request set by some ETELMM API lock setting function (i.e. SetXXXXSetting)
* has been canceled sinnce canceling the setting request does not prompt a query cancel event from ETEL.
* Old Shared Data constant name: KSecUIOriginatedQuery
*/    
const TUint32 KSecurityUIsQueryRequestCancel = 0x00000302;
enum TSecurityUIsQueryRequestCancel
    {
    ESecurityUIsQueryRequestUninitialized = 0,
    ESecurityUIsQueryRequestOk,
    ESecurityUIsQueryRequestCanceled
    };

#endif      // SECURITYUISPRIVATEPSKEYS_H

// End of File