mtpdataproviders/mtpfileandfolderdp/inc/mtpfiledppanic.h
changeset 0 d0791faffa3f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mtpdataproviders/mtpfileandfolderdp/inc/mtpfiledppanic.h	Tue Feb 02 01:11:40 2010 +0200
@@ -0,0 +1,54 @@
+// Copyright (c) 2006-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:
+// mmtpfiledppanic.h
+// 
+//
+
+/**
+ @file
+ @internalTechnology
+*/
+
+#ifndef __MTPFILEDPPANIC_H__
+#define __MTPFILEDPPANIC_H__
+
+#include <e32std.h>
+
+/**
+define the file data provider panic code
+@internalTechnology
+
+*/
+enum TMTPFileDpPanic
+	{
+	EMTPFileDpNoMatchingProcessor = 0,
+	EMTPFileDpObjectNull = 1,
+	EMTPFileDpFormatNotSupported = 2,
+	EMTPFileDpSendObjectStateInvalid = 3,
+	EMTPFileDpRequestCheckNull = 4,
+	EMTPFileDpHandlesNull = 5,
+	EMTPFileDpUnsupportedProperty = 6,
+	EMTPFileDpObjectPropertyNull = 7,
+	EMTPFileDpCannotRenameDir = 8,
+	};
+
+_LIT(KMTPFileDpPanic, "MTP File Data Provider");
+inline void Panic(TMTPFileDpPanic aCode)
+	{
+	User::Panic(KMTPFileDpPanic, aCode);
+	};
+	
+
+#endif // __MTPDEVDPPANIC_H__
+