--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/securitydialogs/Autolock/PubSub/SecurityUIsPrivatePSKeys.h Tue Jan 26 15:20:08 2010 +0200
@@ -0,0 +1,64 @@
+/*
+* 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
+