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