X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/ab3a1e43565de2cb5d3404ee326c0f7f8ed11610..88fa0efa195c2a30b52093a64f4842a53b5bded8:/nullfe.c diff --git a/nullfe.c b/nullfe.c index cdca93a..2ecd238 100644 --- a/nullfe.c +++ b/nullfe.c @@ -27,8 +27,13 @@ void blitter_free(drawing *dr, blitter *bl) {} void blitter_save(drawing *dr, blitter *bl, int x, int y) {} void blitter_load(drawing *dr, blitter *bl, int x, int y) {} int print_mono_colour(drawing *dr, int grey) { return 0; } -int print_grey_colour(drawing *dr, int hatch, float grey) { return 0; } -int print_rgb_colour(drawing *dr, int hatch, float r, float g, float b) +int print_grey_colour(drawing *dr, float grey) { return 0; } +int print_hatched_colour(drawing *dr, int hatch) { return 0; } +int print_rgb_mono_colour(drawing *dr, float r, float g, float b, int grey) +{ return 0; } +int print_rgb_grey_colour(drawing *dr, float r, float g, float b, float grey) +{ return 0; } +int print_rgb_hatched_colour(drawing *dr, float r, float g, float b, int hatch) { return 0; } void print_line_width(drawing *dr, int width) {} void midend_supersede_game_desc(midend *me, char *desc, char *privdesc) {}