home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Examples / c14 / inc / pngchksm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-17  |  831 b   |  32 lines

  1. #ifndef __PNGCHKSM_H
  2. #define __PNGCHKSM_H
  3. //
  4. // Copyright (c) 1997,1998 Colosseum Builders, Inc.
  5. // All rights reserved.
  6. //
  7. // Colosseum Builders, Inc. makes no warranty, expressed or implied
  8. // with regards to this software. It is provided as is.
  9. //
  10. // See the README.TXT file that came with this software for restrictions
  11. // on the use and redistribution of this file or send E-mail to
  12. // info@colosseumbuilders.com
  13. //
  14.  
  15. //
  16. //  Title:  PNG Checksum Function Declarations
  17. //
  18. //  Author:  John M. Miano  miano@colosseumbuilders.com
  19. //
  20. //  Description:
  21. //
  22. //    Definitions for chucksum functions used in PNG image.
  23. //
  24.  
  25. #include "datatype.h"
  26.  
  27. extern void MakeCrcTable () ;
  28. extern UBYTE4 CRC32 (UBYTE4 crc, void *buffer, unsigned int length) ;
  29. extern UBYTE4 Adler (UBYTE4 adler, UBYTE1 value) ;
  30.  
  31. #endif
  32.