summaryrefslogtreecommitdiff
path: root/public/include/XMP_Version.h
diff options
context:
space:
mode:
authorHubert Figuiere <hub@figuiere.net>2007-05-11 18:38:11 -0400
committerHubert Figuiere <hub@figuiere.net>2007-05-11 18:38:11 -0400
commit9d7d7c3caac05db240692ad7e9196fcb7f5a1ce5 (patch)
treec6228d1abcad689137e764f63539effadaf1a662 /public/include/XMP_Version.h
Import of XMP SDK 4.1.1 as the start for openxmpadobe-4.1.1
Diffstat (limited to 'public/include/XMP_Version.h')
-rw-r--r--public/include/XMP_Version.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/public/include/XMP_Version.h b/public/include/XMP_Version.h
new file mode 100644
index 0000000..ed41d14
--- /dev/null
+++ b/public/include/XMP_Version.h
@@ -0,0 +1,45 @@
+#ifndef __XMP_Version_h__
+#define __XMP_Version_h__ 1
+
+/* --------------------------------------------------------------------------------------------- */
+/* ** IMPORTANT ** This file must be usable by strict ANSI C compilers. No "//" comments, etc. */
+/* --------------------------------------------------------------------------------------------- */
+
+/*
+// =================================================================================================
+// Copyright 2002-2007 Adobe Systems Incorporated
+// All Rights Reserved.
+//
+// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
+// of the Adobe license agreement accompanying it.
+// =================================================================================================
+*/
+
+/* ============================================================================================= */
+/**
+XMP Toolkit Version Information
+
+Version information for the XMP toolkit is stored in the executable and available through a runtime
+call, <tt>SXMPMeta::GetVersionInfo</tt>. In addition a static version number is defined in this
+header. The information in the executable or returned by <tt>SXMPMeta::GetVersionInfo</tt> is about
+the implementation internals, it is runtime version information. The values defined in this header
+describe the version of the API used at client compile time. They do not necessarily relate to the
+runtime version.
+
+Important: Do not display the static values defined here to users as the version of XMP in use. Do
+not base runtime decisions on just this static version. It is OK to compare the static and runtime
+versions.
+
+*/
+/* ============================================================================================= */
+
+#define XMP_API_VERSION_MAJOR 4
+#define XMP_API_VERSION_MINOR 1
+#define XMP_API_VERSION_MICRO 1
+
+#define XMP_API_VERSION 4.1
+#define XMP_API_VERSION_STRING "4.1.1"
+
+/* ============================================================================================= */
+
+#endif /* __XMP_Version_h__ */