21 lines
440 B
C
21 lines
440 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 {
|
|
int width;
|
|
int height;
|
|
bool opaque;
|
|
osspriteop_area sprite_area;
|
|
};
|
|
|
|
#endif
|