From e97ef012de64a8992c4900a9014ecc71d55261e4 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sat, 8 Jul 2000 18:49:24 +0000 Subject: [PATCH] Fixed typos svn path=/trunk/; revision=1257 --- reactos/include/ddk/ketypes.h | 2 +- reactos/ntoskrnl/ke/main.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/include/ddk/ketypes.h b/reactos/include/ddk/ketypes.h index 2ba86ea6f75..b20868f872a 100644 --- a/reactos/include/ddk/ketypes.h +++ b/reactos/include/ddk/ketypes.h @@ -42,7 +42,7 @@ typedef struct _LOADER_PARAMETER_BLOCK #ifdef __NTOSKRNL__ extern CHAR EXPORTED KeNumberProcessors; -extern LOADER_PARAMETER_BLOCK KeLoaderBlock; +extern LOADER_PARAMETER_BLOCK EXPORTED KeLoaderBlock; #else extern CHAR IMPORTED KeNumberProcessors; extern LOADER_PARAMETER_BLOCK IMPORTED KeLoaderBlock; diff --git a/reactos/ntoskrnl/ke/main.c b/reactos/ntoskrnl/ke/main.c index 976ab82f4e7..161f89388c8 100644 --- a/reactos/ntoskrnl/ke/main.c +++ b/reactos/ntoskrnl/ke/main.c @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.53 2000/07/08 16:53:32 dwelch Exp $ +/* $Id: main.c,v 1.54 2000/07/08 18:47:57 ekohl Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -34,7 +34,7 @@ ULONG EXPORTED NtBuildNumber = KERNEL_VERSION_BUILD; ULONG EXPORTED NtGlobalFlag = 0; CHAR EXPORTED KeNumberProcessors = 1; -LOADER_PARAMETER_BLOCK KeLoaderBlock; +LOADER_PARAMETER_BLOCK EXPORTED KeLoaderBlock; /* FUNCTIONS ****************************************************************/ @@ -57,7 +57,7 @@ void _main (PLOADER_PARAMETER_BLOCK LoaderBlock) /* * FUNCTION: Called by the boot loader to start the kernel * ARGUMENTS: - * _bp = Pointer to boot parameters initialized by the boot loader + * LoaderBlock = Pointer to boot parameters initialized by the boot loader * NOTE: The boot parameters are stored in low memory which will become * invalid after the memory managment is initialized so we make a local copy. */