summaryrefslogtreecommitdiff
path: root/src/plugins/ds-public/vcard/include/plugin_spec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/ds-public/vcard/include/plugin_spec.h')
-rwxr-xr-xsrc/plugins/ds-public/vcard/include/plugin_spec.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/plugins/ds-public/vcard/include/plugin_spec.h b/src/plugins/ds-public/vcard/include/plugin_spec.h
new file mode 100755
index 0000000..e6b1202
--- /dev/null
+++ b/src/plugins/ds-public/vcard/include/plugin_spec.h
@@ -0,0 +1,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_ */