source: abuse/trunk/src/imlib/include/pcxread.hpp @ 39

Last change on this file since 39 was 39, checked in by Sam Hocevar, 15 years ago
  • Fix almost 2,000 warnings by using proper "const" keywords where needed.
File size: 376 bytes
Line 
1#ifndef __PCX_READ_HPP__
2#define __PCX_READ_HPP__
3
4#include "image.hpp"
5#include "image24.hpp"
6#include "palette.hpp"
7
8enum PCX_type { not_PCX, PCX_8, PCX_24 };
9
10PCX_type PCX_file_type(char const *filename);
11image24 *read_PCX24(char const *filename);
12image *read_PCX(char const *filename, palette *&pal);
13void write_PCX(image *im, palette *pal, char const *filename);
14
15#endif
Note: See TracBrowser for help on using the repository browser.