hdf5/tools/gifconv
Quincey Koziol ed663577a5 [svn-r4473] Purpose:
Code cleanup for better compatibility with C++ compilers
Description:
    C++ compilers are choking on our C code, for various reasons:
        we used our UNUSED macro incorrectly when referring to pointer types
        we used various C++ keywords as variables, etc.
        we incremented enum's with the ++ operator.
Solution:
    Changed variables, etc.to avoid C++ keywords (new, class, typename, typeid,
        template)

    Fixed usage of UNUSED macro from this:
        char UNUSED *c
    to this:
        char * UNUSED c

    Switched the enums from x++ to x=x+1
Platforms tested:
    FreeBSD 4.4 (hawkwind)
2001-09-25 12:46:32 -05:00
..
decompress.c [svn-r4327] Purpose: 2001-08-10 21:47:13 -05:00
Dependencies [svn-r4292] 2001-08-01 16:00:25 -05:00
gif2hdf.c [svn-r4254] 2001-07-24 12:51:22 -05:00
gif2mem.c [svn-r4254] 2001-07-24 12:51:22 -05:00
gif.h [svn-r4254] 2001-07-24 12:51:22 -05:00
gifread.c [svn-r4473] Purpose: 2001-09-25 12:46:32 -05:00
hdf2gif.c [svn-r4326] Purpose: 2001-08-10 17:30:01 -05:00
hdfgifwr.c [svn-r4326] Purpose: 2001-08-10 17:30:01 -05:00
Makefile.in [svn-r3919] 2001-05-12 12:55:47 -05:00
readhdf.c [svn-r4326] Purpose: 2001-08-10 17:30:01 -05:00
writehdf.c [svn-r4326] Purpose: 2001-08-10 17:30:01 -05:00