mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Added support for binary system hive.
svn path=/trunk/; revision=4518
This commit is contained in:
parent
55a31c6b98
commit
c26ce9f93b
3 changed files with 7 additions and 2 deletions
|
@ -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)
|
Changes in v1.8.4 (4/5/2003) (chorns)
|
||||||
|
|
||||||
- Added DOS compatible Master Boot Record (MBR)
|
- Added DOS compatible Master Boot Record (MBR)
|
||||||
|
|
|
@ -230,6 +230,7 @@ REACTOS_OBJS= reactos.o \
|
||||||
arcname.o \
|
arcname.o \
|
||||||
hwdetect.o \
|
hwdetect.o \
|
||||||
reghive.o \
|
reghive.o \
|
||||||
|
binhive.o \
|
||||||
registry.o
|
registry.o
|
||||||
|
|
||||||
COMM_OBJS = rs232.o
|
COMM_OBJS = rs232.o
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
/* just some stuff */
|
/* 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 COPYRIGHT "Copyright (C) 1998-2003 Brian Palmer <brianp@sginet.com>"
|
||||||
#define AUTHOR_EMAIL "<brianp@sginet.com>"
|
#define AUTHOR_EMAIL "<brianp@sginet.com>"
|
||||||
#define BY_AUTHOR "by Brian Palmer"
|
#define BY_AUTHOR "by Brian Palmer"
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
//
|
//
|
||||||
#define FREELOADER_MAJOR_VERSION 1
|
#define FREELOADER_MAJOR_VERSION 1
|
||||||
#define FREELOADER_MINOR_VERSION 8
|
#define FREELOADER_MINOR_VERSION 8
|
||||||
#define FREELOADER_PATCH_VERSION 4
|
#define FREELOADER_PATCH_VERSION 5
|
||||||
|
|
||||||
|
|
||||||
PUCHAR GetFreeLoaderVersionString(VOID);
|
PUCHAR GetFreeLoaderVersionString(VOID);
|
||||||
|
|
Loading…
Reference in a new issue