summaryrefslogtreecommitdiffstats
path: root/tkimg/libpng/pngtcl.h
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-01-03 21:52:18 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-01-03 21:52:18 (GMT)
commit4302a869f0212a3e4878e66a7260b434f6584476 (patch)
treee6976e66edf648406e32b092395121e045301692 /tkimg/libpng/pngtcl.h
parenta780057cc1b51dd3a557549c3cf2431f09136c0d (diff)
parent60d692811c12788ed4468d5ff680633304e8f641 (diff)
downloadblt-4302a869f0212a3e4878e66a7260b434f6584476.zip
blt-4302a869f0212a3e4878e66a7260b434f6584476.tar.gz
blt-4302a869f0212a3e4878e66a7260b434f6584476.tar.bz2
Merge commit '60d692811c12788ed4468d5ff680633304e8f641' as 'tkimg'
Diffstat (limited to 'tkimg/libpng/pngtcl.h')
-rwxr-xr-xtkimg/libpng/pngtcl.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/tkimg/libpng/pngtcl.h b/tkimg/libpng/pngtcl.h
new file mode 100755
index 0000000..2b45cdc
--- /dev/null
+++ b/tkimg/libpng/pngtcl.h
@@ -0,0 +1,72 @@
+/*
+ * pngtcl.h --
+ *
+ * Interface to libpng.
+ *
+ * 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: pngtcl.h 399 2016-04-04 13:14:06Z nijtmans $
+ *
+ */
+
+#ifndef __PNGTCL_H__
+#define __PNGTCL_H__
+
+#include <tcl.h>
+
+#define PNGTCL_MAJOR_VERSION 1
+#define PNGTCL_MINOR_VERSION 6
+#define PNGTCL_RELEASE_LEVEL TCL_RELEASE
+#define PNGTCL_RELEASE_SERIAL 21
+
+#define PNGTCL_VERSION "1.6.21"
+#define PNGTCL_PATCH_LEVEL "1.6.21"
+
+/*
+ * 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 Pngtcl generic layer
+ *----------------------------------------------------------------------------
+ */
+
+/*
+ *----------------------------------------------------------------------------
+ * Function prototypes for publically accessible routines
+ *----------------------------------------------------------------------------
+ */
+
+#include "pngtclDecls.h"
+
+/*
+ *----------------------------------------------------------------------------
+ * Function prototypes for stub initialization.
+ *----------------------------------------------------------------------------
+ */
+
+const char *
+Pngtcl_InitStubs(Tcl_Interp *interp, const char *version, int exact);
+
+#endif /* RC_INVOKED */
+#endif /* __PNGTCL_H__ */