searchsrv_plat/cpix_utility_api/inc/cpixcontentinfocommon.h
changeset 23 d4d56f5e7c55
parent 20 556534771396
child 24 65456528cac2
equal deleted inserted replaced
20:556534771396 23:d4d56f5e7c55
     1 /*
       
     2 * Copyright (c) 2010 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:  This component is to store the details of harvester plugins
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CPIXCONTENTINFOCOMMON_H_
       
    19 #define CPIXCONTENTINFOCOMMON_H_
       
    20 
       
    21 //ContentInfo DB path
       
    22 _LIT( KCIDBPath , "c:\\Private\\2001f6fb" );
       
    23 //Content Info DB filename
       
    24 _LIT(KContentInfoFileName,"cpixcontentinfo.sq");
       
    25 
       
    26 //Table name in ContentInfo database
       
    27 _LIT( KContentInfoTableName , "table1" );
       
    28 
       
    29 //Max length for plugin display name
       
    30 const TInt KMaxPluginNameLength(20);
       
    31 
       
    32 //column name for content name column
       
    33 _LIT( KContentName , "NAME" );
       
    34 
       
    35 //column name for Indexing status column
       
    36 _LIT( KIndexingStatus , "INS" );
       
    37 
       
    38 //column name for Blacklist status column
       
    39 _LIT( KBlacklistStatus , "BLS" );
       
    40 
       
    41 //Primary key
       
    42 _LIT( KPrimaryKey , "NAME" );
       
    43 
       
    44 #endif /* CPIXCONTENTINFOCOMMON_H_ */