accessoryservices/accessoryserver/inc/Common/accessoryservicesinternalpskeys.h
changeset 76 cb32bcc88bad
parent 73 d38941471f1c
child 77 8a984d260a2d
equal deleted inserted replaced
73:d38941471f1c 76:cb32bcc88bad
     1 /*
       
     2 * Copyright (c) 2008 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:  Internal Publish&Subscribe definitions of the
       
    15 *                Accessory Services
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef ACCESSORYSERVICESINTERNALPSKEYS_H
       
    21 #define ACCESSORYSERVICESINTERNALPSKEYS_H
       
    22 
       
    23 #include <e32cmn.h>
       
    24 
       
    25 static const TUid KPSUidAccessoryServices = { 0x10205030 };
       
    26 
       
    27 // =============================================================================
       
    28 // Accessory Services Wired Connection API
       
    29 // =============================================================================
       
    30 // Use TUid KPSUidAccessoryServices = { 0x10205030 } 
       
    31 
       
    32 /**
       
    33 * Notified when a wired accessory is physically connected or disconnected.  
       
    34 */
       
    35 const TUint32 KAccSrvcsWiredConnection = 0x00000001;
       
    36 enum TAccSrvcsWiredConnection
       
    37     {
       
    38     EAccSrvcsWiredConnUninitialized = 0,
       
    39     EAccSrvcsWiredConnConnected,
       
    40     EAccSrvcsWiredConnDisconnected
       
    41     };
       
    42 
       
    43 
       
    44 #endif ACCESSORYSERVICESINTERNALPSKEYS_H