Replace CONFIG_SCREEN_AND_DEBUG with "etc/screen-and-debug" file.
[seabios.git] / src / jpeg.h
1 #ifndef __JPEG_H
2 #define __JPEG_H
3
4 struct jpeg_decdata;
5 struct jpeg_decdata *jpeg_alloc(void);
6 int jpeg_decode(struct jpeg_decdata *jpeg, unsigned char *buf);
7 void jpeg_get_size(struct jpeg_decdata *jpeg, int *width, int *height);
8 int jpeg_show(struct jpeg_decdata *jpeg, unsigned char *pic
9               , int width, int height, int depth);
10
11 #endif