summaryrefslogtreecommitdiffstats
path: root/tkimg/zlib/zlibtcl.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/zlib/zlibtcl.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/zlib/zlibtcl.h')
-rw-r--r--tkimg/zlib/zlibtcl.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/tkimg/zlib/zlibtcl.h b/tkimg/zlib/zlibtcl.h
new file mode 100644
index 0000000..7440585
--- /dev/null
+++ b/tkimg/zlib/zlibtcl.h
@@ -0,0 +1,68 @@
+/*
+ * zlibtcl.h --
+ *
+ * Interface to libz.
+ *
+ * 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: zlibtcl.h,v 1.1.1.1 2016/01/25 21:20:47 joye Exp $
+ *
+ */
+
+#ifndef __ZLIBTCL_H__
+#define __ZLIBTCL_H__
+
+#include <tcl.h>
+
+#define ZLIBTCL_MAJOR_VERSION 1
+#define ZLIBTCL_MINOR_VERSION 2
+#define ZLIBTCL_RELEASE_LEVEL TCL_RELEASE
+#define ZLIBTCL_RELEASE_SERIAL 8
+
+#ifndef ZLIBTCL_VERSION
+#define ZLIBTCL_VERSION "1.2.8"
+#define ZLIBTCL_PATCH_LEVEL "1.2.8"
+#endif
+
+/*
+ * 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
+
+/*
+ *----------------------------------------------------------------------------
+ * Function prototypes for publically accessible routines
+ *----------------------------------------------------------------------------
+ */
+
+#include "zlibtclDecls.h"
+
+/*
+ *----------------------------------------------------------------------------
+ * Function prototypes for stub initialization.
+ *----------------------------------------------------------------------------
+ */
+
+const char *
+Zlibtcl_InitStubs(Tcl_Interp *interp, const char *version, int exact);
+
+#endif /* RC_INVOKED */
+#endif /* __ZLIBTCL_H__ */