1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #ifndef REMCONMEDIAERROR_H_
25 #define REMCONMEDIAERROR_H_
29 const TInt KErrRemConMediaBase = -6780;
32 Invalid media library state cookie.
34 This error only occurs in the database aware clients.
36 const TInt KErrInvalidMediaLibraryStateCookie = KErrRemConMediaBase - 0x5;
39 The direction parameter is invalid
41 @see MrcdamlbFolderDownResult()
42 @see MrcdumlbFolderDownResult()
44 const TInt KErrMediaBrowseInvalidDirection = KErrRemConMediaBase - 0x7;
47 The UID provided does not refer to a folder item
49 @see MrcdamlbFolderDownResult()
50 @see MrcdumlbFolderDownResult()
52 const TInt KErrMediaBrowseNotADirectory = KErrRemConMediaBase - 0x8;
55 The UID provided does not refer to any currently valid item
57 @see MrcdamlbFolderDownResult()
58 @see MrcdumlbFolderDownResult()
59 @see MrcdamlbFolderItemResult()
60 @see MrcdumlbFolderItemResult()
61 @see MrcdamlbMediaElementItemResult()
62 @see MrcdumlbMediaElementItemResult()
63 @see MrcdanpbMediaElementItemResult()
64 @see MrcdunpbMediaElementItemResult()
66 const TInt KErrInvalidUid = KErrRemConMediaBase - 0x9;
69 The start of range provided is not valid
71 @see MrcdamlbFolderListing()
72 @see MrcdumlbFolderListing()
73 @see MrcdanpbFolderListing()
74 @see MrcdunpbFolderListing()
76 const TInt KErrMediaBrowseInvalidOffset = KErrRemConMediaBase - 0xb;
79 The UID provided refers to a directory
80 which cannot be handled by this media player.
83 const TInt KErrNowPlayingUidIsADirectory = KErrRemConMediaBase - 0xc;
86 The media is not able to be used for this operation at this time
89 const TInt KErrNowPlayingMediaInUse = KErrRemConMediaBase - 0xd;
92 No more items can be added to the now playing list because it is full
95 const TInt KErrNowPlayingListFull = KErrRemConMediaBase - 0xe;
97 #endif /*REMCONMEDIAERROR_H_*/