mmserv/tms/inc/tmscallserverstartparam.h
changeset 0 71ca22bcf22a
child 3 4f62049db6ac
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mmserv/tms/inc/tmscallserverstartparam.h	Tue Feb 02 01:08:46 2010 +0200
@@ -0,0 +1,49 @@
+/*
+ * Copyright (c) 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: Telephony Multimedia Service
+ *
+ */
+
+#ifndef TMSCALLSERVERSTARTPARAM_H
+#define TMSCALLSERVERSTARTPARAM_H
+
+#include <e32std.h>
+
+namespace TMS {
+
+const TInt KTMSCallServerStackSize = 0x5000; //  20 KB
+const TInt KTMSCallServerInitHeapSize = 0x500000; // 5.2 MB
+const TInt KTMSCallServerMaxHeapSize = 0x1800000; //  25 MB
+
+// FORWARD DECLARATIONS
+class TMSServer;
+
+// TMSCallServerStartParam
+class TMSCallServerStartParam
+    {
+public:
+    TMSCallServerStartParam(TMSServer* aTMSServer, RServer2& aHandle);
+
+public:
+    TMSServer* iTMSServer;
+    RServer2& iTMSCallServerHandle;
+    };
+
+} //namespace TMS
+
+#include "tmscallserverstartparam.inl"
+
+#endif // TMSCALLSERVERSTARTPARAM_H
+
+// End of file