summaryrefslogtreecommitdiff
path: root/src/plugins/ds-public/vcard/include/plugin_spec.h
blob: e6b120212eee91f39200c7605e6da545b7e74a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * oma-ds-agent
 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef PLUGIN_SPEC_H_
#define PLUGIN_SPEC_H_

typedef enum {

	VCARD_CONTENT_NO_TYPE = 0,
	VCARD_CONTENT_EXTENSION = 1,
	VCARD_CONTENT_FN = 2,
	VCARD_CONTENT_N = 3,
	VCARD_CONTENT_NICKNAME = 4,
	VCARD_CONTENT_PHOTO = 5,
	VCARD_CONTENT_BDAY = 6,
	VCARD_CONTENT_ADR = 7,
	VCARD_CONTENT_LABEL = 8,
	VCARD_CONTENT_TEL = 9,
	VCARD_CONTENT_EMAIL = 10,
	VCARD_CONTENT_TITLE = 11,
	VCARD_CONTENT_ROLE = 12,
	VCARD_CONTENT_ORG = 13,
	VCARD_CONTENT_NOTE = 14,
	VCARD_CONTENT_REV = 15,
	VCARD_CONTENT_UID = 16,
	VCARD_CONTENT_URL = 17,
	VCARD_CONTENT_X_ANNIVERSARY = 18,
	VCARD_CONTENT_X_IRMC_LUID = 19,

/*
	VCARD_CONTENT_NAME,
	VCARD_CONTENT_PROFILE,
	VCARD_CONTENT_SOURCE,
	VCARD_CONTENT_MAILER,
	VCARD_CONTENT_TZ,
	VCARD_CONTENT_GEO,
	VCARD_CONTENT_LOGO,
	VCARD_CONTENT_AGENT,
	VCARD_CONTENT_CATEGORIES,
	VCARD_CONTENT_PRODID,
	VCARD_CONTENT_SORT-STRING,
	VCARD_CONTENT_SOUND,
	VCARD_CONTENT_VERSION,
	VCARD_CONTENT_CLASS,
	VCARD_CONTENT_KEY,
	VCARD_CONTENT_X_CHILDREN,
*/

} vcard_value_type_e;

#endif				/* PLUGIN_SPEC_H_ */