~ubuntu-branches/ubuntu/oneiric/libmng/oneiric

« back to all changes in this revision

Viewing changes to libmng_read.h

  • Committer: Bazaar Package Importer
  • Author(s): Shiju p. Nair
  • Date: 2004-09-27 10:29:48 UTC
  • mfrom: (0.2.1 upstream) (1.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040927102948-k2hbz9ywsf6d3fy3
Tags: 1.0.8-1
* New upstream release (closes: #250106).
* Removed unwanted dependencies (closes: #256526, #218469)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* ************************************************************************** */
2
2
/* *                                                                        * */
3
3
/* * project   : libmng                                                     * */
4
 
/* * file      : libmng_read.h             copyright (c) 2000 G.Juyn        * */
5
 
/* * version   : 1.0.0                                                      * */
 
4
/* * file      : libmng_read.h             copyright (c) 2000-2004 G.Juyn   * */
 
5
/* * version   : 1.0.8                                                      * */
6
6
/* *                                                                        * */
7
7
/* * purpose   : Read management (definition)                               * */
8
8
/* *                                                                        * */
9
9
/* * author    : G.Juyn                                                     * */
10
 
/* * web       : http://www.3-t.com                                         * */
11
 
/* * email     : mailto:info@3-t.com                                        * */
12
10
/* *                                                                        * */
13
11
/* * comment   : Definition of the read management routines                 * */
14
12
/* *                                                                        * */
21
19
/* *             0.9.3 - 10/18/2000 - G.Juyn                                * */
22
20
/* *             - added closestream() processing for mng_cleanup()         * */
23
21
/* *                                                                        * */
 
22
/* *             1.0.5 - 08/19/2002 - G.Juyn                                * */
 
23
/* *             - B597134 - libmng pollutes the linker namespace           * */
 
24
/* *                                                                        * */
 
25
/* *             1.0.8 - 04/12/2004 - G.Juyn                                * */
 
26
/* *             - added data-push mechanisms for specialized decoders      * */
 
27
/* *                                                                        * */
24
28
/* ************************************************************************** */
25
29
 
26
30
#if defined(__BORLANDC__) && defined(MNG_STRICT_ANSI)
32
36
 
33
37
/* ************************************************************************** */
34
38
 
35
 
mng_retcode process_eof  (mng_datap pData);
36
 
 
37
 
mng_retcode read_graphic (mng_datap pData);
 
39
mng_retcode mng_process_eof       (mng_datap pData);
 
40
 
 
41
mng_retcode mng_release_pushdata  (mng_datap pData);
 
42
 
 
43
mng_retcode mng_release_pushchunk (mng_datap pData);
 
44
 
 
45
mng_retcode mng_read_graphic      (mng_datap pData);
38
46
 
39
47
/* ************************************************************************** */
40
48