~ubuntu-branches/debian/stretch/grub2/stretch

« back to all changes in this revision

Viewing changes to include/grub/i386/vga_common.h

Tags: upstream-1.98+20100705
ImportĀ upstreamĀ versionĀ 1.98+20100705

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
extern grub_uint8_t grub_console_cur_color;
27
27
 
28
 
void grub_console_putchar (grub_uint32_t c);
29
 
grub_ssize_t grub_console_getcharwidth (grub_uint32_t c);
30
 
grub_uint16_t grub_console_getwh (void);
31
 
void grub_console_setcolorstate (grub_term_color_state state);
32
 
void grub_console_setcolor (grub_uint8_t normal_color, grub_uint8_t highlight_color);
33
 
void grub_console_getcolor (grub_uint8_t *normal_color, grub_uint8_t *highlight_color);
34
 
 
35
 
/* Implemented in both kern/i386/pc/startup.S and vga_text.c;  this symbol
36
 
   is not exported, so there's no collision, but vga_common.c expects this
37
 
   prototype to be the same.  */
38
 
void grub_console_real_putchar (int c);
 
28
grub_uint16_t grub_console_getwh (struct grub_term_output *term);
 
29
void grub_console_setcolorstate (struct grub_term_output *term,
 
30
                                 grub_term_color_state state);
39
31
 
40
32
#endif /* ! GRUB_VGA_COMMON_CPU_HEADER */