xfs: Fix inode size attribution
[syslinux.git] / com32 / menu / menu.c
blob8f7af4d0c8943b6e5244694401961dd5e5a79259
1 /* ----------------------------------------------------------------------- *
3 * Copyright 2004-2008 H. Peter Anvin - All Rights Reserved
5 * This program 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, Inc., 51 Franklin St, Fifth Floor,
8 * Boston MA 02110-1301, USA; either version 2 of the License, or
9 * (at your option) any later version; incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
14 * menu.c
16 * Simple menu system which displays a list and allows the user to select
17 * a command line and/or edit it.
20 #include <consoles.h>
21 #include "menu.h"
23 int draw_background(const char *arg)
25 /* Nothing to do... */
26 (void)arg;
27 return 0;
30 void set_resolution(int x, int y)
32 (void)x;
33 (void)y;
36 void local_cursor_enable(bool enabled)
38 (void)enabled;
41 void start_console(void)
43 console_ansi_raw();