2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2004-03-24 01:17:08 +03:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2003-02-26 00:00:27 +03:00
|
|
|
*/
|
|
|
|
|
2004-09-04 02:44:48 +04:00
|
|
|
/** \file
|
|
|
|
* Content for image/jpeg (interface).
|
|
|
|
*/
|
2003-02-26 00:00:27 +03:00
|
|
|
|
2004-09-04 02:44:48 +04:00
|
|
|
#ifndef _NETSURF_IMAGE_JPEG_H_
|
|
|
|
#define _NETSURF_IMAGE_JPEG_H_
|
2004-01-25 23:13:51 +03:00
|
|
|
|
2004-09-04 02:44:48 +04:00
|
|
|
struct bitmap;
|
2003-09-08 01:08:13 +04:00
|
|
|
struct content;
|
|
|
|
|
|
|
|
struct content_jpeg_data {
|
2004-09-04 18:37:57 +04:00
|
|
|
int dummy; /* NOT USED but to satisfy Norcroft */
|
2003-09-08 01:08:13 +04:00
|
|
|
};
|
2003-02-26 00:00:27 +03:00
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
bool nsjpeg_convert(struct content *c, int width, int height);
|
2004-01-25 23:13:51 +03:00
|
|
|
void nsjpeg_destroy(struct content *c);
|
2003-02-26 00:00:27 +03:00
|
|
|
|
|
|
|
#endif
|