~hamo/ubuntu/precise/grub2/grub2.hi_res

« back to all changes in this revision

Viewing changes to include/grub/i386/pc/console.h

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#include <grub/i386/vga_common.h>
41
41
 
42
42
/* These are global to share code between C and asm.  */
43
 
int grub_console_checkkey (void);
44
 
int grub_console_getkey (void);
45
 
grub_uint16_t grub_console_getxy (void);
46
 
void grub_console_gotoxy (grub_uint8_t x, grub_uint8_t y);
47
 
void grub_console_cls (void);
48
 
void grub_console_setcursor (int on);
 
43
int grub_console_checkkey (struct grub_term_input *term);
 
44
int grub_console_getkey (struct grub_term_input *term);
 
45
grub_uint16_t grub_console_getxy (struct grub_term_output *term);
 
46
void grub_console_gotoxy (struct grub_term_output *term,
 
47
                          grub_uint8_t x, grub_uint8_t y);
 
48
void grub_console_cls (struct grub_term_output *term);
 
49
void grub_console_setcursor (struct grub_term_output *term, int on);
 
50
void grub_console_putchar (struct grub_term_output *term,
 
51
                           const struct grub_unicode_glyph *c);
49
52
 
50
53
/* Initialize the console system.  */
51
54
void grub_console_init (void);