From 3cb945ba086083aaf6b3bee89a4d27c7f1a58f80 Mon Sep 17 00:00:00 2001 From: Emanuele Aliberti Date: Sat, 21 Feb 2004 15:34:51 +0000 Subject: [PATCH] KERNEL_VERSION_BUILD_RC added in buildno.h. svn path=/trunk/; revision=8291 --- reactos/tools/buildno.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/tools/buildno.c b/reactos/tools/buildno.c index b69e0934b04..cea2661c515 100644 --- a/reactos/tools/buildno.c +++ b/reactos/tools/buildno.c @@ -1,4 +1,4 @@ -/* $Id: buildno.c,v 1.4 2004/01/12 00:22:34 gvg Exp $ +/* $Id: buildno.c,v 1.5 2004/02/21 15:34:51 ea Exp $ * * buildno - Generate the build number for ReactOS * @@ -90,6 +90,7 @@ write_h (int build) s = s + sprintf (s, "#define KERNEL_VERSION_BUILD\t%d\n", build); s = s + sprintf (s, "#define KERNEL_VERSION_BUILD_STR\t\"%d\"\n", build); + s = s + sprintf (s, "#define KERNEL_VERSION_BUILD_RC\t\"%d\\0\"\n", build); s = s + sprintf (s, "#define KERNEL_RELEASE_RC\t\"%d.%d", KERNEL_VERSION_MAJOR, KERNEL_VERSION_MINOR); if (0 != KERNEL_VERSION_PATCH_LEVEL)