equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: defines the structure for postcard address configuration |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 // Service struct for messaging editors/viewer |
|
21 // Set the mtm id that your application supports in mtm_id |
|
22 // Set either KMsgServiceView or KMsgServiceEdit in type |
|
23 // (defined in MuiuMsgEditorServiceConst.h) |
|
24 |
|
25 //#include <MuiuMsgEditorServiceConst.h> |
|
26 |
|
27 STRUCT POSTCARD_ADDRESS_FIELD |
|
28 { |
|
29 WORD length = 0; |
|
30 BYTE mandatory = 0; |
|
31 } |
|
32 |
|
33 STRUCT POSTCARD_ADDRESS_FIELDS |
|
34 { |
|
35 POSTCARD_ADDRESS_FIELD fields[]; |
|
36 } |
|
37 |
|
38 |