Fix cross compilation (e.g. on Darwin). Following changes to make.tmpl,
[AROS.git] / arch / all-pc / boot / grub2-aros / include / grub / gfxterm.h
blob7e1ff6dfc8e09b0529fcac81b2e4e62e8f645828
1 /*
2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2006,2007,2008 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef GRUB_GFXTERM_HEADER
20 #define GRUB_GFXTERM_HEADER 1
22 #include <grub/err.h>
23 #include <grub/types.h>
24 #include <grub/term.h>
25 #include <grub/video.h>
26 #include <grub/font.h>
28 grub_err_t
29 EXPORT_FUNC (grub_gfxterm_set_window) (struct grub_video_render_target *target,
30 int x, int y, int width, int height,
31 int double_repaint,
32 grub_font_t font, int border_width);
34 void EXPORT_FUNC (grub_gfxterm_schedule_repaint) (void);
36 extern void (*EXPORT_VAR (grub_gfxterm_decorator_hook)) (void);
38 struct grub_gfxterm_background
40 struct grub_video_bitmap *bitmap;
41 int blend_text_bg;
42 grub_video_rgba_color_t default_bg_color;
45 extern struct grub_gfxterm_background EXPORT_VAR (grub_gfxterm_background);
47 void EXPORT_FUNC (grub_gfxterm_video_update_color) (void);
48 void
49 EXPORT_FUNC (grub_gfxterm_get_dimensions) (unsigned *width, unsigned *height);
51 #endif /* ! GRUB_GFXTERM_HEADER */