summaryrefslogtreecommitdiff
path: root/frontends/atari
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-05-30 21:21:09 +0100
committerVincent Sanders <vince@kyllikki.org>2016-05-30 21:21:09 +0100
commitaa53519bcd5b716306e0fb0ec2a89d953128bc85 (patch)
tree88790461b1d86d2e741d406ad72f73c8d3be985e /frontends/atari
parent667605869fba31c48e61736f89efe4126d27db0c (diff)
downloadnetsurf-aa53519bcd5b716306e0fb0ec2a89d953128bc85.tar.gz
netsurf-aa53519bcd5b716306e0fb0ec2a89d953128bc85.tar.bz2
fix missing includes from header API changes
Diffstat (limited to 'frontends/atari')
-rw-r--r--frontends/atari/plot/plot.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/frontends/atari/plot/plot.h b/frontends/atari/plot/plot.h
index 22f8781c2..fd73a8c33 100644
--- a/frontends/atari/plot/plot.h
+++ b/frontends/atari/plot/plot.h
@@ -54,6 +54,8 @@
#define ERR_NO_MEM 2 /* Not enough memory for requested operation */
#define ERR_PLOTTER_NOT_AVAILABLE 3 /* invalid plotter driver name passed */
+struct plot_style_s;
+
struct s_vdi_sysinfo {
short vdi_handle; /**< vdi handle */
short scr_w; /**< resolution horz. */
@@ -104,8 +106,8 @@ void plot_get_clip_grect(GRECT * out);
bool plot_clip(const struct rect *clip);
VdiHdl plot_get_vdi_handle(void);
long plot_get_flags(void);
-bool plot_rectangle( int x0, int y0, int x1, int y1,const plot_style_t *style );
-bool plot_line( int x0, int y0, int x1, int y1, const plot_style_t *style );
+bool plot_rectangle( int x0, int y0, int x1, int y1,const struct plot_style_s *style );
+bool plot_line( int x0, int y0, int x1, int y1, const struct plot_style_s *style );
bool plot_blit_bitmap(struct bitmap * bmp, int x, int y,
unsigned long bg, unsigned long flags);
bool plot_blit_mfdb(GRECT * loc, MFDB * insrc, short fgcolor, uint32_t flags);