|
45
|
1 |
/*
|
|
|
2 |
* Copyright (c) 2008 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: Test sounds_api
|
|
|
15 |
*
|
|
|
16 |
*/
|
|
|
17 |
|
|
|
18 |
|
|
|
19 |
NAME SOND
|
|
|
20 |
|
|
|
21 |
// INCLUDES
|
|
|
22 |
|
|
|
23 |
#include <eikon.rh>
|
|
|
24 |
#include <avkon.rh>
|
|
|
25 |
#include <appinfo.rh>
|
|
|
26 |
|
|
|
27 |
#include "testsdksounds.hrh"
|
|
|
28 |
|
|
|
29 |
|
|
|
30 |
// RESOURCE DEFINITIONS
|
|
|
31 |
//-----------------------------------------------------------------------------
|
|
|
32 |
//
|
|
|
33 |
// RSS_SIGNATURE
|
|
|
34 |
//-----------------------------------------------------------------------------
|
|
|
35 |
//
|
|
|
36 |
RESOURCE RSS_SIGNATURE
|
|
|
37 |
{
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
RESOURCE AVKON_SOUND_INFO_LIST r_testsoundsinfo_list
|
|
|
41 |
{
|
|
|
42 |
list =
|
|
|
43 |
{
|
|
|
44 |
AVKON_SOUND_INFO
|
|
|
45 |
{
|
|
|
46 |
sid = EAvkonSIDNoSound;
|
|
|
47 |
}
|
|
|
48 |
};
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
RESOURCE AVKON_SKEY_LIST r_skey_list
|
|
|
52 |
{
|
|
|
53 |
list =
|
|
|
54 |
{
|
|
|
55 |
AVKON_SKEY_INFO
|
|
|
56 |
{
|
|
|
57 |
key = EAvkonSkey1;
|
|
|
58 |
},
|
|
|
59 |
AVKON_SKEY_INFO
|
|
|
60 |
{
|
|
|
61 |
key = EAvkonSkey2;
|
|
|
62 |
}
|
|
|
63 |
};
|
|
|
64 |
}
|
|
|
65 |
|
|
|
66 |
// End of file
|
|
|
67 |
|
|
|
68 |
|