contacts_plat/contacts_ui_api/inc/cntuids.h
changeset 46 efe85016a067
child 47 7cbcb2896f0e
equal deleted inserted replaced
40:b46a585f6909 46:efe85016a067
       
     1 /*
       
     2  * Copyright (c) 2009 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:
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef CNTUIDS_H
       
    19 #define CNTUIDS_H
       
    20 
       
    21 #include <e32def.h>
       
    22 #include <e32cmn.h>
       
    23 
       
    24 /*
       
    25 *   Contacts application's central repository Uid used for global settings
       
    26 */
       
    27 const TUid KCRUiContacts = {0x2002FF54};
       
    28 
       
    29 /*
       
    30 *   Key value used to store the name ordering setting i.e
       
    31 *   FirstName LastName, LastName FirstName etc
       
    32 */
       
    33 const TUint32 KCntNameOrdering = 0x00000001;
       
    34 
       
    35 // name order enumerations
       
    36 enum CntNameOrder {
       
    37     CntOrderLastFirst = 0x0,
       
    38     CntOrderLastCommaFirst = 0x1,
       
    39     CntOrderFirstLast = 0x2
       
    40 };
       
    41 
       
    42 #endif