[devel] Corrected PNG_REMOVED macro to take five arguments.

The macro was documented with two arguments (name,ordinal), however
    the symbol checking .dfn files assumed five arguments.  The five
    argument form seems more useful so it is changed to that.
This commit is contained in:
Glenn Randers-Pehrson 2010-04-28 13:21:03 -05:00
parent cb096a4f05
commit 5905484c75
3 changed files with 9 additions and 1 deletions

View File

@ -203,6 +203,10 @@ version 1.5.0beta22 [April 28, 2010]
Revised contrib/pngminim to use the "everything off" option in pngusr.dfa.
version 1.5.0beta23 [April 28, 2010]
Corrected PNG_REMOVED macro to take five arguments.
The macro was documented with two arguments (name,ordinal), however
the symbol checking .dfn files assumed five arguments. The five
argument form seems more useful so it is changed to that.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
(subscription required; visit

View File

@ -2685,6 +2685,10 @@ version 1.5.0beta22 [April 28, 2010]
Revised contrib/pngminim to use the "everything off" option in pngusr.dfa.
version 1.5.0beta23 [April 28, 2010]
Corrected PNG_REMOVED macro to take five arguments.
The macro was documented with two arguments (name,ordinal), however
the symbol checking .dfn files assumed five arguments. The five
argument form seems more useful so it is changed to that.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@ -271,7 +271,7 @@
/* Use PNG_REMOVED to comment out a removed interface. */
#ifndef PNG_REMOVED
# define PNG_REMOVED(name, ordinal)
# define PNG_REMOVED(type, name, args, attributes, ordinal)
#endif
#ifndef PNG_CALLBACK