mpxplugins/serviceplugins/collectionplugins/mpxsqlitepodcastdbplugin/inc/mpxpodcastcollectiondbstd.h
changeset 0 ff3acec5bc43
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mpxplugins/serviceplugins/collectionplugins/mpxsqlitepodcastdbplugin/inc/mpxpodcastcollectiondbstd.h	Thu Dec 17 08:45:05 2009 +0200
@@ -0,0 +1,48 @@
+/*
+* Copyright (c) 2006 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:  This header file contains constants definitions and type
+*                definition
+*
+*/
+
+
+#ifndef MPXPODCASTCOLLECTIONDBSTD_H
+#define MPXPODCASTCOLLECTIONDBSTD_H
+
+// CONSTANTS
+
+const TInt KDBPluginUid           = 0x101FFC3C;
+const TInt KMCMaxQueryLen         = 500; // 255 max uri length + 245 for query
+const TInt KMCMaxTextLen          = 255; // Maximum field size for categories is 255
+
+const TInt KSystemTableID = 99;
+const TInt KRecentlyPlayedPlaylistUID = 1 | (KSystemTableID << 24);
+const TInt KMostPlayedPlaylistUID     = 2 | (KSystemTableID << 24);
+const TInt KRecentlyAddedPlaylistUID  = 3 | (KSystemTableID << 24);
+const TInt KNotPlayedPlaylistUID      = 4 | (KSystemTableID << 24);
+
+const TInt KPublishAllPlaylistUID       = 11 | (KSystemTableID << 24);
+const TInt KPublishTodayPlaylistUID     = 12 | (KSystemTableID << 24);
+const TInt KPublishYesterdayPlaylistUID = 13 | (KSystemTableID << 24);
+const TInt KPublishThisWeekPlaylistUID  = 14 | (KSystemTableID << 24);
+const TInt KPublishLastWeekPlaylistUID  = 15 | (KSystemTableID << 24);
+const TInt KPublish2WeeksAgoPlaylistUID = 16 | (KSystemTableID << 24);
+const TInt KPublish3WeeksAgoPlaylistUID = 17 | (KSystemTableID << 24);
+const TInt KPublishLastMonthPlaylistUID = 18 | (KSystemTableID << 24);
+const TInt KPublishEarlierPlaylistUID   = 19 | (KSystemTableID << 24);
+const TInt KPublishUnknownPlaylistUID   = 20 | (KSystemTableID << 24);
+
+#endif // MPXPODCASTCOLLECTIONDBSTD_H
+
+// End Of File