equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007 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 API is used for creating mappings between remote |
|
15 * control clients. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef TSPCLIENTMAPPERPRIVATEPSKEYS_H |
|
21 #define TSPCLIENTMAPPERPRIVATEPSKEYS_H |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 /** |
|
26 * A P&S key for containing information about registered remote control clients. |
|
27 */ |
|
28 const TUid KTspClientMapperProperty = { 0x10200C70 }; // Category |
|
29 |
|
30 /** |
|
31 * KTspClientMapperKeyPlaying |
|
32 * Contains a list of PIDs of all remote control clients that have registered to |
|
33 * this api as playing. |
|
34 */ |
|
35 const TUint32 KTspClientMapperKeyPlaying = 0x00000001; |
|
36 |
|
37 /** |
|
38 * KTspClientMapperKeyRegistered |
|
39 * Contains a list of PIDs of all remote control clients that have registered to |
|
40 * this api as registered. |
|
41 */ |
|
42 const TUint32 KTspClientMapperKeyRegistered = 0x00000002; |
|
43 |
|
44 /** |
|
45 * KTspClientMapperKeyStopped |
|
46 * Contains a list of PIDs of all remote control clients that have registered to |
|
47 * this api as stopped. |
|
48 */ |
|
49 const TUint32 KTspClientMapperKeyStopped = 0x00000003; |
|
50 |
|
51 |
|
52 #endif // TSPCLIENTMAPPERPRIVATEPSKEYS_H |
|
53 |
|
54 // End of File |