home *** CD-ROM | disk | FTP | other *** search
- //
- // Copyright (c) 1997,1998 Colosseum Builders, Inc.
- // All rights reserved.
- //
- // Colosseum Builders, Inc. makes no warranty, expressed or implied
- // with regards to this software. It is provided as is.
- //
- // See the README.TXT file that came with this software for restrictions
- // on the use and redistribution of this file or send E-mail to
- // info@colosseumbuilders.com
- //
-
- //
- // Title: PNG Private Definitions
- //
- // Author: John M. Miano miano@colosseumbuilders.com
- //
- #include "pngpvt.h"
-
- // PNG File Signature
- extern const UBYTE1 PngSignature [PngSignatureSize] =
- {
- 137, 80, 78, 71, 13, 10, 26, 10,
- } ;
-
- // The order that length length codes are stored.
- extern const UBYTE1 PngLengthOrder [PngLengthSize] =
- {
- 16, 17, 18, 0, 8,
- 7, 9, 6, 10, 5,
- 11, 4, 12, 3, 13,
- 2, 14, 1, 15,
- } ;
-