diff -r b46a585f6909 -r efe85016a067 contacts_plat/contacts_ui_api/inc/cntuids.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contacts_plat/contacts_ui_api/inc/cntuids.h Wed Jun 23 18:02:44 2010 +0300 @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). + * All rights reserved. + * This component and the accompanying materials are made available + * under the terms of "Eclipse Public License v1.0" + * which accompanies this distribution, and is available + * at the URL "http://www.eclipse.org/legal/epl-v10.html". + * + * Initial Contributors: + * Nokia Corporation - initial contribution. + * + * Contributors: + * + * Description: + * + */ + +#ifndef CNTUIDS_H +#define CNTUIDS_H + +#include +#include + +/* +* Contacts application's central repository Uid used for global settings +*/ +const TUid KCRUiContacts = {0x2002FF54}; + +/* +* Key value used to store the name ordering setting i.e +* FirstName LastName, LastName FirstName etc +*/ +const TUint32 KCntNameOrdering = 0x00000001; + +// name order enumerations +enum CntNameOrder { + CntOrderLastFirst = 0x0, + CntOrderLastCommaFirst = 0x1, + CntOrderFirstLast = 0x2 +}; + +#endif