| 1 | /* ************************************************************************** */
|
|---|
| 2 | /* * For conditions of distribution and use, * */
|
|---|
| 3 | /* * see copyright notice in libmng.h * */
|
|---|
| 4 | /* ************************************************************************** */
|
|---|
| 5 | /* * * */
|
|---|
| 6 | /* * project : libmng * */
|
|---|
| 7 | /* * file : libmng_write.h copyright (c) 2000-2004 G.Juyn * */
|
|---|
| 8 | /* * version : 1.0.9 * */
|
|---|
| 9 | /* * * */
|
|---|
| 10 | /* * purpose : Write management (definition) * */
|
|---|
| 11 | /* * * */
|
|---|
| 12 | /* * author : G.Juyn * */
|
|---|
| 13 | /* * * */
|
|---|
| 14 | /* * comment : Definition of the write management 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 | /* * 1.0.9 - 09/25/2004 - G.Juyn * */
|
|---|
| 26 | /* * - replaced MNG_TWEAK_LARGE_FILES with permanent solution * */
|
|---|
| 27 | /* * * */
|
|---|
| 28 | /* ************************************************************************** */
|
|---|
| 29 |
|
|---|
| 30 | #if defined(__BORLANDC__) && defined(MNG_STRICT_ANSI)
|
|---|
| 31 | #pragma option -A /* force ANSI-C */
|
|---|
| 32 | #endif
|
|---|
| 33 |
|
|---|
| 34 | #ifndef _libmng_write_h_
|
|---|
| 35 | #define _libmng_write_h_
|
|---|
| 36 |
|
|---|
| 37 | /* ************************************************************************** */
|
|---|
| 38 |
|
|---|
| 39 | mng_retcode mng_drop_chunks (mng_datap pData);
|
|---|
| 40 |
|
|---|
| 41 | mng_retcode mng_write_graphic (mng_datap pData);
|
|---|
| 42 |
|
|---|
| 43 | /* ************************************************************************** */
|
|---|
| 44 |
|
|---|
| 45 | #endif /* _libmng_write_h_ */
|
|---|
| 46 |
|
|---|
| 47 | /* ************************************************************************** */
|
|---|
| 48 | /* * end of file * */
|
|---|
| 49 | /* ************************************************************************** */
|
|---|