diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2009-03-02 10:51:25 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2009-03-02 10:51:25 -0800 |
commit | 37bfb1cb8b4c1d670e0d407b83c5270f7c457389 (patch) | |
tree | 81096599d4315dc2debb8c3faa189371d1d15566 /com32/cmenu/display.c | |
parent | 2b570465a0df2070aca723559a9f309d92530e6a (diff) | |
download | syslinux-37bfb1cb8b4c1d670e0d407b83c5270f7c457389.tar.gz syslinux-37bfb1cb8b4c1d670e0d407b83c5270f7c457389.tar.xz syslinux-37bfb1cb8b4c1d670e0d407b83c5270f7c457389.zip |
Move complex menu to com32/cmenu; clean up the Makefiles
Move the complex menu system into the com32 directory so it can be
sequenced properly with respect to hdt (it needs to be built after
com32/lib but before com32/hdt). While we're at it, clean up the
Makefiles somewhat.
Diffstat (limited to 'com32/cmenu/display.c')
-rw-r--r-- | com32/cmenu/display.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/com32/cmenu/display.c b/com32/cmenu/display.c new file mode 100644 index 00000000..5391d7fd --- /dev/null +++ b/com32/cmenu/display.c @@ -0,0 +1,37 @@ +/* -*- c -*- ------------------------------------------------------------- * + * + * Copyright 2004-2006 Murali Krishnan Ganapathy - All Rights Reserved + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, Inc., 53 Temple Place Ste 330, + * Boston MA 02111-1307, USA; either version 2 of the License, or + * (at your option) any later version; incorporated herein by reference. + * + * ----------------------------------------------------------------------- */ + +#ifndef NULL +#define NULL ((void *) 0) +#endif + +#include "help.h" +#include "com32io.h" +#include "menu.h" +#include "tui.h" +#include <stdlib.h> +#include <com32.h> +#include <stdio.h> + + +int main(int argc, char *argv[]) +{ + if (argc < 2) { + csprint("Usage: display.c32 <textfile>\n",0x07); + exit(1); + } + + init_help(NULL); // No base dir, so all filenames must be absolute + runhelp(argv[1]); + close_help(); + return 0; +} |