blob: 002696ba9a8d5ef867ee93319b4255c494dcb1ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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,v 1.1.1.1 2016/01/25 21:20:46 joye Exp $
*
*/
#ifndef __PNGTCL_H__
#define __PNGTCL_H__
#include <tcl.h>
#define PNGTCL_MAJOR_VERSION 1
#define PNGTCL_MINOR_VERSION 4
#define PNGTCL_RELEASE_LEVEL TCL_RELEASE
#define PNGTCL_RELEASE_SERIAL 8
#define PNGTCL_VERSION "1.4.12"
#define PNGTCL_PATCH_LEVEL "1.4.12"
/*
* 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__ */
|