btobexprofiles/obexserviceman/inc/obexservicemanprivatecrkeys.h
branchRCL_3
changeset 56 9386f31cc85b
parent 55 613943a21004
child 61 269724087bed
equal deleted inserted replaced
55:613943a21004 56:9386f31cc85b
     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:  Obex Service Manager private central repository key definitions.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef OBEXSERVICEMAN_PRIVATE_CR_KEYS_H
       
    20 #define OBEXSERVICEMAN_PRIVATE_CR_KEYS_H
       
    21 
       
    22 
       
    23 /**  Obex Service Manager configuration CenRep UID */
       
    24 const TUid KCRUidObexServiceMan = { 0x20016BC5 };
       
    25 
       
    26 
       
    27 /**
       
    28  * CenRep key for storing Obex USB DMA usage settings.
       
    29  *
       
    30  * Possible integer values:
       
    31  * 0 USB DMA is not in use
       
    32  * 1 USB DMA is in use
       
    33  *
       
    34  * Default value: 1
       
    35  *
       
    36  */
       
    37 const TUint32 KObexUsbDmaUsage =	0x00000001;
       
    38 
       
    39 /**  Enumeration for obex usb dma usage*/
       
    40 enum TObexUsbDmaUsage
       
    41     {
       
    42     EObexUsbDmaNotInUse = 0,
       
    43     EObexUsbDmaInUse = 1
       
    44     };
       
    45 
       
    46 #endif // OBEXSERVICEMAN_PRIVATE_CR_KEYS_H