mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-02-15 05:54:15 +03:00
![Richard Wilson](/assets/img/avatar_default.png)
Moved GIF file reading to image/, optimisation of plotting for GIFs, JNGs, PNGs and JPEGs, initial work for toolbar customisation. Possibly some other things too. svn path=/import/netsurf/; revision=1301
19 lines
415 B
C
19 lines
415 B
C
/*
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
* Licensed under the GNU General Public License,
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
|
*/
|
|
|
|
#ifndef _NETSURF_RISCOS_BITMAP_H_
|
|
#define _NETSURF_RISCOS_BITMAP_H_
|
|
|
|
struct osspriteop_area;
|
|
|
|
struct bitmap {
|
|
bool opaque;
|
|
osspriteop_area sprite_area;
|
|
};
|
|
|
|
#endif
|