sysstatemgmt/systemstatereferenceplugins/custcmd/inc/ssmuiproviderdll.h
changeset 0 4e1aa6a622a0
child 7 1fc153c72b60
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sysstatemgmt/systemstatereferenceplugins/custcmd/inc/ssmuiproviderdll.h	Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,67 @@
+// Copyright (c) 2007-2009 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:
+//
+
+/**
+ @file
+ @publishedPartner
+ @released
+*/
+#ifndef __SSMUIPROVIDERDLL_H__
+#define __SSMUIPROVIDERDLL_H__
+
+#include <ssm/strtsecuritystatus.h>
+#include <e32def.h>
+#include <e32cmn.h>
+#include <e32base.h>
+
+class CSsmUiSpecific : public CBase
+    {
+public:
+
+	IMPORT_C ~CSsmUiSpecific();
+	IMPORT_C static TUid StartupPSUid();
+	IMPORT_C static TUid SecurityPinNotifierUid();
+	IMPORT_C static TUint EmergencyCallPropertyKey();
+	IMPORT_C static TUid EmergencyCallPropertyCategory();
+	IMPORT_C static TBool IsSimSupported();
+	IMPORT_C void SetSecurityStatus(const TStrtSecurityStatus& aSecurityStatus);
+	IMPORT_C TStrtSecurityStatus SecurityStatus() const;
+	IMPORT_C static CSsmUiSpecific* InstanceL();
+	IMPORT_C static void Release();
+	IMPORT_C static TUid ScreenOutputChannelUid();
+	IMPORT_C static TUint SimStatusPropertyKey();
+	IMPORT_C static TBool IsSimStateChangeAllowed();
+	IMPORT_C static TBool IsAmaStarterSupported();
+	IMPORT_C static HBufC* GetTsyModuleNameL();
+	IMPORT_C static TUid StarterPSUid();
+	IMPORT_C static HBufC* PhoneTsyNameL();
+	IMPORT_C static TBool IsSimPresent();
+	IMPORT_C static TBool IsSimlessOfflineSupported();
+	IMPORT_C static TUint RFStatusPropertyKey();
+	IMPORT_C static TUid RFStatusPropertyCategory();
+	IMPORT_C static TBool IsNormalBoot();
+	IMPORT_C static TBool IsSimChangedReset();
+	IMPORT_C static TUint ValidateRTCPropertyKey();
+	IMPORT_C static TUid ValidateRTCPropertyCategory();
+	IMPORT_C static TInt PhoneMemoryRootDriveId();
+
+private:
+	CSsmUiSpecific();
+private:
+	TStrtSecurityStatus iStrtSecurityStatus;
+	TInt iReferenceCount;
+    };
+
+#endif // __SSMUIPROVIDERDLL_H__