diff options
Diffstat (limited to 'tkimg/zlib/zlibtcl.h')
-rwxr-xr-x | tkimg/zlib/zlibtcl.h | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/tkimg/zlib/zlibtcl.h b/tkimg/zlib/zlibtcl.h deleted file mode 100755 index fdccff8..0000000 --- a/tkimg/zlib/zlibtcl.h +++ /dev/null @@ -1,68 +0,0 @@ -/*
- * 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 382 2015-07-03 10:16:19Z nijtmans $
- *
- */
-
-#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.1"
-#define ZLIBTCL_PATCH_LEVEL "1.2.8.1"
-#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__ */
|