51
|
1 |
// Copyright (c) 2004-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".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
//
|
|
15 |
|
|
16 |
|
|
17 |
#ifndef AVRCP_H
|
|
18 |
#define AVRCP_H
|
|
19 |
|
|
20 |
/**
|
|
21 |
@file
|
|
22 |
@internalComponent
|
|
23 |
@released
|
|
24 |
*/
|
|
25 |
|
|
26 |
namespace AvrcpStatus
|
|
27 |
{
|
|
28 |
enum TCode
|
|
29 |
{
|
|
30 |
EInvalidCommand = 0,
|
|
31 |
EInvalidParameter = 1,
|
|
32 |
EParameterNotFound = 2,
|
|
33 |
EInternalError = 3,
|
|
34 |
ESuccess = 4,
|
|
35 |
EUidChanged = 5,
|
|
36 |
EReserved = 6,
|
|
37 |
EInvalidDirection = 7,
|
|
38 |
ENotADirectory = 8,
|
|
39 |
EDoesNotExist = 9,
|
|
40 |
EInvalidScope = 0xa,
|
|
41 |
ERangeOutOfBounds = 0xb,
|
|
42 |
EUidIsADirectory = 0xc,
|
|
43 |
EMediaInUse = 0xd,
|
|
44 |
ENowPlayingListFull = 0xe,
|
|
45 |
ESearchNotSupported = 0xf,
|
|
46 |
ESearchInProgress = 0x10,
|
|
47 |
EInvalidPlayerId = 0x11,
|
|
48 |
EPlayerNotBrowesable = 0x12,
|
|
49 |
EPlayerNotAddressed = 0x13,
|
|
50 |
ENoValidSearchResults = 0x14,
|
|
51 |
ENoAvailablePlayers = 0x15,
|
|
52 |
EAddressedPlayerChanged = 0x16,
|
|
53 |
};
|
|
54 |
}
|
|
55 |
|
|
56 |
|
|
57 |
#endif // AVRCP_H
|