From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBGqT-0008NN-0k for mharc-grub-devel@gnu.org; Sat, 05 Jan 2008 16:46:21 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBGqS-0008My-1y for grub-devel@gnu.org; Sat, 05 Jan 2008 16:46:20 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBGqK-0008Li-PB for grub-devel@gnu.org; Sat, 05 Jan 2008 16:46:19 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBGqK-0008Le-LQ for grub-devel@gnu.org; Sat, 05 Jan 2008 16:46:12 -0500 Received: from neonescio.viaisn.org ([82.94.249.43]) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JBGqJ-0001Cn-DT for grub-devel@gnu.org; Sat, 05 Jan 2008 16:46:12 -0500 Received: from dijkstra.dekkers.cx ([2001:960:7a0:0:213:d4ff:fe9c:2487] ident=Debian-exim) by neonescio.viaisn.org with esmtpsa (TLS-1.0:RSA_AES_256_CBC_SHA1:32 CV=0) (Exim 4.63 #1) id 1JBGpw-0003NV-04 for grub-devel@gnu.org; Sat, 05 Jan 2008 22:45:48 +0100 Received: from localhost ([127.0.0.1] helo=dijkstra.dekkers.cx ident=jeroen) by dijkstra.dekkers.cx with esmtp (Exim 4.68) (envelope-from ) id 1JBGpu-0000uo-Oh for grub-devel@gnu.org; Sat, 05 Jan 2008 22:45:46 +0100 Date: Sat, 05 Jan 2008 22:45:46 +0100 Message-ID: <878x342bg5.wl@dekkers.cx> From: Jeroen Dekkers To: The development of GRUB 2 In-Reply-To: <20080103153533.GA24992@thorin> References: <20080101124728.GA30417@thorin> <200801030042.01855.okuji@enbug.org> <20080103010414.GC6843@thorin> <20080103153533.GA24992@thorin> User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.7 Emacs/22.1 (x86_64-pc-linux-gnu) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) Subject: Re: [PATCH] allow user-configurable menucolor X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jan 2008 21:46:20 -0000 At Thu, 3 Jan 2008 16:35:33 +0100, Robert Millan wrote: > diff -x '*~' -x '*.mk' -Nurp grub2/include/grub/normal.h grub2.color/include/grub/normal.h > --- grub2/include/grub/normal.h 2007-07-22 01:32:22.000000000 +0200 > +++ grub2.color/include/grub/normal.h 2008-01-03 16:12:53.000000000 +0100 > @@ -1,7 +1,7 @@ > /* normal.h - prototypes for the normal mode */ > /* > * GRUB -- GRand Unified Bootloader > - * Copyright (C) 2002,2003,2005,2006,2007 Free Software Foundation, Inc. > + * Copyright (C) 2002,2003,2005,2006,2007,2008 Free Software Foundation, Inc. > * > * GRUB is free software: you can redistribute it and/or modify > * it under the terms of the GNU General Public License as published by > @@ -154,6 +154,9 @@ grub_err_t grub_normal_print_device_info > grub_err_t grub_normal_menu_addentry (const char *title, > struct grub_script *script, > const char *sourcecode); > +char *grub_env_write_color_normal (struct grub_env_var *var, const char *val); > +char *grub_env_write_color_highlight (struct grub_env_var *var, const char *val); > +void grub_wait_after_message (void); You should actually also include grub/env.h if you use struct grub_env_var in the prototypes. I've fixed that in CVS. Jeroen Dekkers