mmserv/tms/inc/tmscallserverstartparam.h
changeset 0 71ca22bcf22a
child 3 4f62049db6ac
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2  * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description: Telephony Multimedia Service
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef TMSCALLSERVERSTARTPARAM_H
       
    19 #define TMSCALLSERVERSTARTPARAM_H
       
    20 
       
    21 #include <e32std.h>
       
    22 
       
    23 namespace TMS {
       
    24 
       
    25 const TInt KTMSCallServerStackSize = 0x5000; //  20 KB
       
    26 const TInt KTMSCallServerInitHeapSize = 0x500000; // 5.2 MB
       
    27 const TInt KTMSCallServerMaxHeapSize = 0x1800000; //  25 MB
       
    28 
       
    29 // FORWARD DECLARATIONS
       
    30 class TMSServer;
       
    31 
       
    32 // TMSCallServerStartParam
       
    33 class TMSCallServerStartParam
       
    34     {
       
    35 public:
       
    36     TMSCallServerStartParam(TMSServer* aTMSServer, RServer2& aHandle);
       
    37 
       
    38 public:
       
    39     TMSServer* iTMSServer;
       
    40     RServer2& iTMSCallServerHandle;
       
    41     };
       
    42 
       
    43 } //namespace TMS
       
    44 
       
    45 #include "tmscallserverstartparam.inl"
       
    46 
       
    47 #endif // TMSCALLSERVERSTARTPARAM_H
       
    48 
       
    49 // End of file