blob: e4e3e60491c76fe2859bd3de4a9c12cffdde0269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* PARSEC HEADER: img_tga.h
*/
#ifndef _IMG_TGA_H_
#define _IMG_TGA_H_
// external functions
int TGA_SaveBuffer( const char *filename, char *buff, int width, int height );
#endif // _IMG_TGA_H_
|