mirror of
https://github.com/reactos/reactos.git
synced 2025-05-01 19:50:36 +00:00
[NTOSKRNL] Add and call the CmpSaveBootControlSet() stub.
This commit is contained in:
parent
a4e25b8673
commit
167bffd80f
3 changed files with 16 additions and 2 deletions
|
@ -262,3 +262,11 @@ CmGetSystemControlValues(IN PVOID SystemHiveData,
|
||||||
PsDefaultThreadLocaleId = PsDefaultSystemLocaleId;
|
PsDefaultThreadLocaleId = PsDefaultSystemLocaleId;
|
||||||
PsDefaultUILanguageId = PsInstallUILanguageId;
|
PsDefaultUILanguageId = PsInstallUILanguageId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NTSTATUS
|
||||||
|
NTAPI
|
||||||
|
CmpSaveBootControlSet(IN USHORT ControlSet)
|
||||||
|
{
|
||||||
|
DPRINT1("CmpSaveBootControlSet(%lu)\n", ControlSet);
|
||||||
|
return STATUS_SUCCESS;
|
||||||
|
}
|
||||||
|
|
|
@ -1322,8 +1322,8 @@ NtInitializeRegistry(IN USHORT Flag)
|
||||||
Flag -= CM_BOOT_FLAG_ACCEPTED;
|
Flag -= CM_BOOT_FLAG_ACCEPTED;
|
||||||
if (Flag)
|
if (Flag)
|
||||||
{
|
{
|
||||||
/* FIXME: Save the last known good boot */
|
/* Save the last known good boot */
|
||||||
//Status = CmpSaveBootControlSet(Flag);
|
Status = CmpSaveBootControlSet(Flag);
|
||||||
|
|
||||||
/* Notify HAL */
|
/* Notify HAL */
|
||||||
HalEndOfBoot();
|
HalEndOfBoot();
|
||||||
|
|
|
@ -1177,6 +1177,12 @@ CmGetSystemControlValues(
|
||||||
IN PCM_SYSTEM_CONTROL_VECTOR ControlVector
|
IN PCM_SYSTEM_CONTROL_VECTOR ControlVector
|
||||||
);
|
);
|
||||||
|
|
||||||
|
NTSTATUS
|
||||||
|
NTAPI
|
||||||
|
CmpSaveBootControlSet(
|
||||||
|
IN USHORT ControlSet
|
||||||
|
);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Hardware Configuration Routines
|
// Hardware Configuration Routines
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue