Added support for binary system hive.

svn path=/trunk/; revision=4518
This commit is contained in:
Eric Kohl 2003-04-10 18:51:22 +00:00
parent 55a31c6b98
commit c26ce9f93b
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Changes in v1.8.5 (4/10/2003) (ekohl)
- Added support for binary system hive.
Changes in v1.8.4 (4/5/2003) (chorns)
- Added DOS compatible Master Boot Record (MBR)

View file

@ -230,6 +230,7 @@ REACTOS_OBJS= reactos.o \
arcname.o \
hwdetect.o \
reghive.o \
binhive.o \
registry.o
COMM_OBJS = rs232.o

View file

@ -22,7 +22,7 @@
/* just some stuff */
#define VERSION "FreeLoader v1.8.4"
#define VERSION "FreeLoader v1.8.5"
#define COPYRIGHT "Copyright (C) 1998-2003 Brian Palmer <brianp@sginet.com>"
#define AUTHOR_EMAIL "<brianp@sginet.com>"
#define BY_AUTHOR "by Brian Palmer"
@ -36,7 +36,7 @@
//
#define FREELOADER_MAJOR_VERSION 1
#define FREELOADER_MINOR_VERSION 8
#define FREELOADER_PATCH_VERSION 4
#define FREELOADER_PATCH_VERSION 5
PUCHAR GetFreeLoaderVersionString(VOID);