connectivitymodules/SeCon/catalogspcconnectivityplugin/inc/catalogspcconnectivitydefines.h
branchRCL_3
changeset 20 4a793f564d72
parent 0 d0791faffa3f
equal deleted inserted replaced
19:0aa8cc770c8a 20:4a793f564d72
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Server information that the client needs
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32base.h>
       
    20 
       
    21 /**  Server name */
       
    22 _LIT( KCatalogsPCConnectivityServerName, 
       
    23     "CatalogsPCConnectivityServer" );
       
    24 
       
    25 /** Semaphore that is used when creating a new server */
       
    26 _LIT( KCatalogsPCConnectivityServerSemaphoreName, 
       
    27     "CATALOGSPCCONNECTIVITYSemaphore" );
       
    28 
       
    29 /** File that is passed to the new server-process for execution */
       
    30 _LIT( KCatalogsPCConnectivityServerFilename, 
       
    31     "catalogsenginepcclientfrontend" );
       
    32 
       
    33 // Default message slot amount in a session
       
    34 const TUint KCatalogsPCConnectivityDefaultMessageSlots = 255;
       
    35 
       
    36 /**  Version numbers */
       
    37 const TUint KCatalogsPCConnectivityMajorVersionNumber=1;
       
    38 const TUint KCatalogsPCConnectivityMinorVersionNumber=0;
       
    39 const TUint KCatalogsPCConnectivityBuildVersionNumber=0;
       
    40 
       
    41 /**  Function opcodes used in message passing between client and server */
       
    42 enum TCatalogsPCConnectivityServRqst
       
    43     {
       
    44     ECatalogsPCConnectivitySupportedMimeTypes = 1,
       
    45     ECatalogsPCConnectivityPutData,
       
    46     ECatalogsPCConnectivityGetData,
       
    47     ECatalogsPCConnectivityGetSize
       
    48     };
       
    49