mpxplugins/serviceplugins/collectionplugins/mpxsqlitepodcastdbplugin/inc/mpxpodcastcollectiondbstd.h
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     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:  This header file contains constants definitions and type
       
    15 *                definition
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef MPXPODCASTCOLLECTIONDBSTD_H
       
    21 #define MPXPODCASTCOLLECTIONDBSTD_H
       
    22 
       
    23 // CONSTANTS
       
    24 
       
    25 const TInt KDBPluginUid           = 0x101FFC3C;
       
    26 const TInt KMCMaxQueryLen         = 500; // 255 max uri length + 245 for query
       
    27 const TInt KMCMaxTextLen          = 255; // Maximum field size for categories is 255
       
    28 
       
    29 const TInt KSystemTableID = 99;
       
    30 const TInt KRecentlyPlayedPlaylistUID = 1 | (KSystemTableID << 24);
       
    31 const TInt KMostPlayedPlaylistUID     = 2 | (KSystemTableID << 24);
       
    32 const TInt KRecentlyAddedPlaylistUID  = 3 | (KSystemTableID << 24);
       
    33 const TInt KNotPlayedPlaylistUID      = 4 | (KSystemTableID << 24);
       
    34 
       
    35 const TInt KPublishAllPlaylistUID       = 11 | (KSystemTableID << 24);
       
    36 const TInt KPublishTodayPlaylistUID     = 12 | (KSystemTableID << 24);
       
    37 const TInt KPublishYesterdayPlaylistUID = 13 | (KSystemTableID << 24);
       
    38 const TInt KPublishThisWeekPlaylistUID  = 14 | (KSystemTableID << 24);
       
    39 const TInt KPublishLastWeekPlaylistUID  = 15 | (KSystemTableID << 24);
       
    40 const TInt KPublish2WeeksAgoPlaylistUID = 16 | (KSystemTableID << 24);
       
    41 const TInt KPublish3WeeksAgoPlaylistUID = 17 | (KSystemTableID << 24);
       
    42 const TInt KPublishLastMonthPlaylistUID = 18 | (KSystemTableID << 24);
       
    43 const TInt KPublishEarlierPlaylistUID   = 19 | (KSystemTableID << 24);
       
    44 const TInt KPublishUnknownPlaylistUID   = 20 | (KSystemTableID << 24);
       
    45 
       
    46 #endif // MPXPODCASTCOLLECTIONDBSTD_H
       
    47 
       
    48 // End Of File