24
|
1 |
/*
|
|
2 |
* Copyright (c) 2009 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:
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef RADIOSETTINGS_RH
|
|
19 |
#define RADIOSETTINGS_RH
|
|
20 |
|
|
21 |
// System includes
|
|
22 |
#include <uikon.rh>
|
|
23 |
|
|
24 |
STRUCT RADIOPRESET
|
|
25 |
{
|
|
26 |
LTEXT name; // Name of a Radio Station preset
|
|
27 |
LONG freq_kHz; // Frequency of the radio, in kHz. 108.0 MHz == 108000 kHz
|
|
28 |
LTEXT serviceid; // Visual Radio Service Id for Content server
|
|
29 |
BYTE radio_preset_type; // Indicates whether this is a visual radio -enabled preset. 0 indicates false, otherwise true.
|
|
30 |
LTEXT radio_preset_location; // Location of the preset
|
|
31 |
}
|
|
32 |
|
|
33 |
#endif // RADIOSETTINGS_RH
|