Last change
on this file since 483 was
49,
checked in by Sam Hocevar, 15 years ago
|
- Imported original public domain release, for future reference.
|
File size:
393 bytes
|
Line | |
---|
1 | #ifndef _MDL_READ_HPP_ |
---|
2 | #define _MDL_READ_HPP_ |
---|
3 | #include "palette.hpp" |
---|
4 | #include "image.hpp" |
---|
5 | |
---|
6 | // end ==-1 the read all images startn==1 first image |
---|
7 | short mdl_total_images(char *fn); |
---|
8 | image **read_mdl(char *fn, palette *&pal, short startn, short endn, short &total); |
---|
9 | void write_mdl(image **images, short total_images, palette *pal,char *fn, |
---|
10 | short firstpage=0, short images_per_page=20); |
---|
11 | |
---|
12 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.