mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:43:05 +00:00
[SETUPLIB] Split OpenAndMapFile function and Doxygen-ize it
This commit is contained in:
parent
e8e770fd14
commit
68c2a28973
5 changed files with 140 additions and 48 deletions
|
@ -190,7 +190,7 @@ FindBootStore( // By handle
|
|||
#if 0
|
||||
/* Check whether the loader configuration file exists */
|
||||
Status = OpenAndMapFile(PartitionDirectoryHandle, NtosBootLoaders[Type].LoaderConfigurationFile,
|
||||
&FileHandle, &SectionHandle, &ViewBase, &FileSize, FALSE);
|
||||
&FileHandle, &FileSize, &SectionHandle, &ViewBase, FALSE);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
/* The loader does not exist, continue with another one */
|
||||
|
@ -343,9 +343,9 @@ OpenIniBootLoaderStore(
|
|||
Status = OpenAndMapFile(PartitionDirectoryHandle,
|
||||
NtosBootLoaders[Type].LoaderConfigurationFile,
|
||||
&BootStore->FileHandle,
|
||||
&BootStore->FileSize,
|
||||
&BootStore->SectionHandle,
|
||||
&BootStore->ViewBase,
|
||||
&BootStore->FileSize,
|
||||
TRUE);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue