commsfwsupport/commselements/serverden/inc/sd_apiextensionipc.h
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalTechnology
       
    19 */
       
    20 
       
    21 #ifndef SYMBIAN_DEN_APIEXTENSIONIPC_H
       
    22 #define SYMBIAN_DEN_APIEXTENSIONIPC_H
       
    23 
       
    24 
       
    25 namespace Den
       
    26 /**
       
    27 @internalTechnology
       
    28 */
       
    29 {
       
    30 
       
    31 //Must be common to all technologies using this ApiExt mechanism
       
    32 //therefore a very big number to minimise the risk of a clash.
       
    33 enum TMessIPC
       
    34 	{
       
    35 //TODO - perhaps we could reuse RMessage2 flags to differenciate session/subsession?
       
    36 	EIpcSubSessionApiExtIfaceOpen = 2000000000,
       
    37 	EIpcSubSessionApiExtIfaceSend,
       
    38 	EIpcSubSessionApiExtIfaceSendReceive,
       
    39 	EIpcSubSessionApiExtIfaceClose,
       
    40 
       
    41 	EIpcSessionApiExtIfaceOpen,
       
    42 	EIpcSessionApiExtIfaceSend,
       
    43 	EIpcSessionApiExtIfaceSendReceive,
       
    44 	EIpcSessionApiExtIfaceClose
       
    45 	};
       
    46 
       
    47 } //namespace Den
       
    48 
       
    49 #endif
       
    50 //SYMBIAN_DEN_APIEXTENSIONIPC_H
       
    51