servicediscoveryandcontrol/pnp/inc/pnpconstants.h
changeset 0 f5a58ecadc66
equal deleted inserted replaced
-1:000000000000 0:f5a58ecadc66
       
     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 #ifndef __PNPCONSTANTS_H__
       
    18 #define __PNPCONSTANTS_H__
       
    19 
       
    20 /**
       
    21 This is the Uid which is used to load the underlying pnp interface. New plugins which make use of the
       
    22 pnp interface should make use of this as the interface id of their implementations in the rss file of the plugin
       
    23 @publishedPartner
       
    24 @prototype
       
    25 */
       
    26 const TUid  KPnPInterfaceId = {0x2000D060};
       
    27 
       
    28 //Error strings
       
    29 _LIT( KPnPHandleNotOpen , "PnP Handle Not Open");
       
    30 _LIT( KControlChannelHandleNotOpen , "Control Channel Handle Not Open");
       
    31 
       
    32 
       
    33 //Panic codes
       
    34 const TInt KErrPnPNotOpen = -2525 ;
       
    35 const TInt KErrControlChannelNotOpen = -2526;
       
    36 
       
    37 #endif // __PNPCONSTANTS_H__