Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4680 right-hear 1
 
2
 *
3
 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
4
 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
5
 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
6
 *
7
 * Last changed in libpng 1.5.0 [January 6, 2011]
8
 *
9
 * This code is released under the libpng license.
10
 * For conditions of distribution and use, see the disclaimer
11
 * and license in png.h
12
 */
13
14
 
15
 * numbers for PNG_DEBUG mean more debugging information.  This has
16
 * only been added since version 0.95 so it is not implemented throughout
17
 * libpng yet, but more support will be added as needed.
18
 *
19
 * png_debug[1-2]?(level, message ,arg{0-2})
20
 *   Expands to a statement (either a simple expression or a compound
21
 *   do..while(0) statement) that outputs a message with parameter
22
 *   substitution if PNG_DEBUG is defined to 2 or more.  If PNG_DEBUG
23
 *   is undefined, 0 or 1 every png_debug expands to a simple expression
24
 *   (actually ((void)0)).
25
 *
26
 *   level: level of detail of message, starting at 0.  A level 'n'
27
 *          message is preceded by 'n' tab characters (not implemented
28
 *          on Microsoft compilers unless PNG_DEBUG_FILE is also
29
 *          defined, to allow debug DLL compilation with no standard IO).
30
 *   message: a printf(3) style text string.  A trailing '\n' is added
31
 *            to the message.
32
 *   arg: 0 to 2 arguments for printf(3) style substitution in message.
33
 */
34
#ifndef PNGDEBUG_H
35
#define PNGDEBUG_H
36
/* These settings control the formatting of messages in png.c and pngerror.c */
37
/* Moved to pngdebug.h at 1.5.0 */
38
#  ifndef PNG_LITERAL_SHARP
39
#    define PNG_LITERAL_SHARP 0x23
40
#  endif
41
#  ifndef PNG_LITERAL_LEFT_SQUARE_BRACKET
42
#    define PNG_LITERAL_LEFT_SQUARE_BRACKET 0x5b
43
#  endif
44
#  ifndef PNG_LITERAL_RIGHT_SQUARE_BRACKET
45
#    define PNG_LITERAL_RIGHT_SQUARE_BRACKET 0x5d
46
#  endif
47
#  ifndef PNG_STRING_NEWLINE
48
#    define PNG_STRING_NEWLINE "\n"
49
#  endif
50
51
 
52
#  if (PNG_DEBUG > 0)
53
#    if !defined(PNG_DEBUG_FILE) && defined(_MSC_VER)
54
#      include 
55
#      if (PNG_DEBUG > 1)
56
#        ifndef _DEBUG
57
#          define _DEBUG
58
#        endif
59
#        ifndef png_debug
60
#          define png_debug(l,m)  _RPT0(_CRT_WARN,m PNG_STRING_NEWLINE)
61
#        endif
62
#        ifndef png_debug1
63
#          define png_debug1(l,m,p1)  _RPT1(_CRT_WARN,m PNG_STRING_NEWLINE,p1)
64
#        endif
65
#        ifndef png_debug2
66
#          define png_debug2(l,m,p1,p2) \
67
             _RPT2(_CRT_WARN,m PNG_STRING_NEWLINE,p1,p2)
68
#        endif
69
#      endif
70
#    else /* PNG_DEBUG_FILE || !_MSC_VER */
71
#      ifndef PNG_STDIO_SUPPORTED
72
#        include  /* not included yet */
73
#      endif
74
#      ifndef PNG_DEBUG_FILE
75
#        define PNG_DEBUG_FILE stderr
76
#      endif /* PNG_DEBUG_FILE */
77
78
 
79
/* Note: ["%s"m PNG_STRING_NEWLINE] probably does not work on
80
 * non-ISO compilers
81
 */
82
#        ifdef __STDC__
83
#          ifndef png_debug
84
#            define png_debug(l,m) \
85
       do { \
86
       int num_tabs=l; \
87
       fprintf(PNG_DEBUG_FILE,"%s"m PNG_STRING_NEWLINE,(num_tabs==1 ? "\t" : \
88
         (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":"")))); \
89
       } while (0)
90
#          endif
91
#          ifndef png_debug1
92
#            define png_debug1(l,m,p1) \
93
       do { \
94
       int num_tabs=l; \
95
       fprintf(PNG_DEBUG_FILE,"%s"m PNG_STRING_NEWLINE,(num_tabs==1 ? "\t" : \
96
         (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":""))),p1); \
97
       } while (0)
98
#          endif
99
#          ifndef png_debug2
100
#            define png_debug2(l,m,p1,p2) \
101
       do { \
102
       int num_tabs=l; \
103
       fprintf(PNG_DEBUG_FILE,"%s"m PNG_STRING_NEWLINE,(num_tabs==1 ? "\t" : \
104
         (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":""))),p1,p2); \
105
       } while (0)
106
#          endif
107
#        else /* __STDC __ */
108
#          ifndef png_debug
109
#            define png_debug(l,m) \
110
       do { \
111
       int num_tabs=l; \
112
       char format[256]; \
113
       snprintf(format,256,"%s%s%s",(num_tabs==1 ? "\t" : \
114
         (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":""))), \
115
         m,PNG_STRING_NEWLINE); \
116
       fprintf(PNG_DEBUG_FILE,format); \
117
       } while (0)
118
#          endif
119
#          ifndef png_debug1
120
#            define png_debug1(l,m,p1) \
121
       do { \
122
       int num_tabs=l; \
123
       char format[256]; \
124
       snprintf(format,256,"%s%s%s",(num_tabs==1 ? "\t" : \
125
         (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":""))), \
126
         m,PNG_STRING_NEWLINE); \
127
       fprintf(PNG_DEBUG_FILE,format,p1); \
128
       } while (0)
129
#          endif
130
#          ifndef png_debug2
131
#            define png_debug2(l,m,p1,p2) \
132
       do { \
133
       int num_tabs=l; \
134
       char format[256]; \
135
       snprintf(format,256,"%s%s%s",(num_tabs==1 ? "\t" : \
136
         (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":""))), \
137
         m,PNG_STRING_NEWLINE); \
138
       fprintf(PNG_DEBUG_FILE,format,p1,p2); \
139
       } while (0)
140
#          endif
141
#        endif /* __STDC __ */
142
#      endif /* (PNG_DEBUG > 1) */
143
144
 
145
#  endif /* (PNG_DEBUG > 0) */
146
#endif /* PNG_DEBUG */
147
#ifndef png_debug
148
#  define png_debug(l, m) ((void)0)
149
#endif
150
#ifndef png_debug1
151
#  define png_debug1(l, m, p1) ((void)0)
152
#endif
153
#ifndef png_debug2
154
#  define png_debug2(l, m, p1, p2) ((void)0)
155
#endif
156
#endif /* PNGDEBUG_H */
157