summaryrefslogtreecommitdiffstats
path: root/tkimg/libtiff/tifftcl.h
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 20:28:26 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 20:28:26 (GMT)
commitb184baa1234c2143e488d1796ae98afab118b891 (patch)
tree686b0a47b272296205c7fa2bc789f62a03d20df6 /tkimg/libtiff/tifftcl.h
parentf7560d0a451a793441216d76eb4d9475aab61740 (diff)
parent5aad878400425d3af44433a47c13824385689e1d (diff)
downloadblt-b184baa1234c2143e488d1796ae98afab118b891.zip
blt-b184baa1234c2143e488d1796ae98afab118b891.tar.gz
blt-b184baa1234c2143e488d1796ae98afab118b891.tar.bz2
Merge commit '5aad878400425d3af44433a47c13824385689e1d' as 'tkimg'
Diffstat (limited to 'tkimg/libtiff/tifftcl.h')
-rw-r--r--tkimg/libtiff/tifftcl.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/tkimg/libtiff/tifftcl.h b/tkimg/libtiff/tifftcl.h
new file mode 100644
index 0000000..1ccb112
--- /dev/null
+++ b/tkimg/libtiff/tifftcl.h
@@ -0,0 +1,72 @@
+/*
+ * tifftcl.h --
+ *
+ * Interface to libtiff.
+ *
+ * Copyright (c) 2002-2004 Andreas Kupries <andreas_kupries@users.sourceforge.net>
+ *
+ * Zveno Pty Ltd makes this software and associated documentation
+ * available free of charge for any purpose. You may make copies
+ * of the software but you must include all of this notice on any copy.
+ *
+ * Zveno Pty Ltd does not warrant that this software is error free
+ * or fit for any purpose. Zveno Pty Ltd disclaims any liability for
+ * all claims, expenses, losses, damages and costs any user may incur
+ * as a result of using, copying or modifying the software.
+ *
+ * $Id: tifftcl.h,v 1.1.1.1 2016/01/25 21:20:46 joye Exp $
+ *
+ */
+
+#ifndef __TIFFTCL_H__
+#define __TIFFTCL_H__
+
+#include <tcl.h>
+
+#define TIFFTCL_MAJOR_VERSION 3
+#define TIFFTCL_MINOR_VERSION 9
+#define TIFFTCL_RELEASE_LEVEL TCL_RELEASE
+#define TIFFTCL_RELEASE_SERIAL 4
+
+#define TIFFTCL_VERSION "3.9.4"
+#define TIFFTCL_PATCH_LEVEL "3.9.4"
+
+/*
+ * Used to block the rest of this header file from resource compilers so
+ * we can just get the version info.
+ */
+#ifndef RC_INVOKED
+
+/* TIP 27 update. If CONST84 is not defined we are compiling against a
+ * core before 8.4 and have to disable some CONST'ness.
+ */
+
+#ifndef CONST84
+# define CONST84
+#endif
+
+/*
+ *----------------------------------------------------------------------------
+ * C API for Tifftcl generic layer
+ *----------------------------------------------------------------------------
+ */
+
+/*
+ *----------------------------------------------------------------------------
+ * Function prototypes for publicly accessible routines
+ *----------------------------------------------------------------------------
+ */
+
+#include "tifftclDecls.h"
+
+/*
+ *----------------------------------------------------------------------------
+ * Function prototypes for stub initialization.
+ *----------------------------------------------------------------------------
+ */
+
+const char *
+Tifftcl_InitStubs(Tcl_Interp *interp, const char *version, int exact);
+
+#endif /* RC_INVOKED */
+#endif /* __TIFFTCL_H__ */