tactilefeedback/tactilefeedbackresolver/inc/tactilefeedbackdefs.h
changeset 0 d54f32e146dd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tactilefeedback/tactilefeedbackresolver/inc/tactilefeedbackdefs.h	Thu Dec 17 08:53:38 2009 +0200
@@ -0,0 +1,51 @@
+/*
+* Copyright (c) 2008 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:  Tactile Feedback server constants definitions.
+* Part of:      Tactile Feedback.
+*
+*/
+
+
+#ifndef TACTILEFEEDBACKDEFS_H
+#define TACTILEFEEDBACKDEFS_H
+
+_LIT( KTactileThreadName, "FeedbackPlayerThread");
+_LIT( KTactileFeedbackServer, "TactileFeedbackServer" );
+
+const TInt KTactileFeedbackServerMinor = 0;
+const TInt KTactileFeedbackServerMajor = 1;
+const TInt KTactileFeedbackServerBuild = 0;
+
+const TInt KPlayerThreadStackSize   = 0x4000;   // 16kB
+const TInt KPlayerThreadHeapMinSize = 0x1000;   // 4kB
+const TInt KPlayerThreadHeapMaxSize = 0x100000; // 1MB
+
+
+enum TTactileFeedbackCmd // Server commands.
+    {
+    EPlayFeedback,
+    EStartFeedback,
+    EModifyFeedback,
+    EStopFeedback,
+    ESetFBEnabledDevice,
+    EFBEnabledForDevice,
+    EPlayPreviewFeedback,
+    EStartPreviewFeedback,
+    EModifyPreviewFeedback,
+    EStopPreviewFeedback
+    };
+
+#endif // TACTILEFEEDBACKDEFS_H
+
+// End of file.