~ubuntu-branches/ubuntu/trusty/grub2/trusty-updates

« back to all changes in this revision

Viewing changes to term/efi/console.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Millan
  • Date: 2008-01-28 00:01:11 UTC
  • mto: (17.3.1 squeeze) (1.9.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20080128000111-0764agvqzg601o1d
Tags: upstream-1.95+20080128
ImportĀ upstreamĀ versionĀ 1.95+20080128

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
}
261
261
 
262
262
static void
 
263
grub_console_getcolor (grub_uint8_t *normal_color, grub_uint8_t *highlight_color)
 
264
{
 
265
  *normal_color = grub_console_normal_color;
 
266
  *highlight_color = grub_console_highlight_color;
 
267
}
 
268
 
 
269
static void
263
270
grub_console_setcursor (int on)
264
271
{
265
272
  grub_efi_simple_text_output_interface_t *o;
283
290
    .cls = grub_console_cls,
284
291
    .setcolorstate = grub_console_setcolorstate,
285
292
    .setcolor = grub_console_setcolor,
 
293
    .getcolor = grub_console_getcolor,
286
294
    .setcursor = grub_console_setcursor,
287
295
    .flags = 0,
288
296
    .next = 0