1 | /* ************************************************************************** */
|
---|
2 | /* * For conditions of distribution and use, * */
|
---|
3 | /* * see copyright notice in libmng.h * */
|
---|
4 | /* ************************************************************************** */
|
---|
5 | /* * * */
|
---|
6 | /* * project : libmng * */
|
---|
7 | /* * file : libmng_dither.h copyright (c) 2000-2002 G.Juyn * */
|
---|
8 | /* * version : 1.0.5 * */
|
---|
9 | /* * * */
|
---|
10 | /* * purpose : Dithering routines (definition) * */
|
---|
11 | /* * * */
|
---|
12 | /* * author : G.Juyn * */
|
---|
13 | /* * * */
|
---|
14 | /* * comment : Definition of the dithering routines * */
|
---|
15 | /* * * */
|
---|
16 | /* * changes : 0.5.1 - 05/08/2000 - G.Juyn * */
|
---|
17 | /* * - changed strict-ANSI stuff * */
|
---|
18 | /* * * */
|
---|
19 | /* * 0.9.2 - 08/05/2000 - G.Juyn * */
|
---|
20 | /* * - changed file-prefixes * */
|
---|
21 | /* * * */
|
---|
22 | /* * 1.0.5 - 08/19/2002 - G.Juyn * */
|
---|
23 | /* * - B597134 - libmng pollutes the linker namespace * */
|
---|
24 | /* * * */
|
---|
25 | /* ************************************************************************** */
|
---|
26 |
|
---|
27 | #if defined(__BORLANDC__) && defined(MNG_STRICT_ANSI)
|
---|
28 | #pragma option -A /* force ANSI-C */
|
---|
29 | #endif
|
---|
30 |
|
---|
31 | #ifndef _libmng_dither_h_
|
---|
32 | #define _libmng_dither_h_
|
---|
33 |
|
---|
34 | /* ************************************************************************** */
|
---|
35 |
|
---|
36 | mng_retcode mng_dither_a_row (mng_datap pData,
|
---|
37 | mng_uint8p pRow);
|
---|
38 |
|
---|
39 | /* ************************************************************************** */
|
---|
40 |
|
---|
41 | #endif /* _libmng_dither_h_ */
|
---|
42 |
|
---|
43 | /* ************************************************************************** */
|
---|
44 | /* * end of file * */
|
---|
45 | /* ************************************************************************** */
|
---|