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 G.Juyn * */
|
---|
8 | /* * version : 1.0.0 * */
|
---|
9 | /* * * */
|
---|
10 | /* * purpose : Dithering routines (definition) * */
|
---|
11 | /* * * */
|
---|
12 | /* * author : G.Juyn * */
|
---|
13 | /* * web : http://www.3-t.com * */
|
---|
14 | /* * email : mailto:info@3-t.com * */
|
---|
15 | /* * * */
|
---|
16 | /* * comment : Definition of the dithering routines * */
|
---|
17 | /* * * */
|
---|
18 | /* * changes : 0.5.1 - 05/08/2000 - G.Juyn * */
|
---|
19 | /* * - changed strict-ANSI stuff * */
|
---|
20 | /* * * */
|
---|
21 | /* * 0.9.2 - 08/05/2000 - G.Juyn * */
|
---|
22 | /* * - changed file-prefixes * */
|
---|
23 | /* * * */
|
---|
24 | /* ************************************************************************** */
|
---|
25 |
|
---|
26 | #if defined(__BORLANDC__) && defined(MNG_STRICT_ANSI)
|
---|
27 | #pragma option -A /* force ANSI-C */
|
---|
28 | #endif
|
---|
29 |
|
---|
30 | #ifndef _libmng_dither_h_
|
---|
31 | #define _libmng_dither_h_
|
---|
32 |
|
---|
33 | /* ************************************************************************** */
|
---|
34 |
|
---|
35 | mng_retcode dither_a_row (mng_datap pData,
|
---|
36 | mng_uint8p pRow);
|
---|
37 |
|
---|
38 | /* ************************************************************************** */
|
---|
39 |
|
---|
40 | #endif /* _libmng_dither_h_ */
|
---|
41 |
|
---|
42 | /* ************************************************************************** */
|
---|
43 | /* * end of file * */
|
---|
44 | /* ************************************************************************** */
|
---|