mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 03:43:36 +00:00
[NTOSKRNL] Add and call the CmpSaveBootControlSet() stub.
This commit is contained in:
@@ -262,3 +262,11 @@ CmGetSystemControlValues(IN PVOID SystemHiveData,
|
||||
PsDefaultThreadLocaleId = PsDefaultSystemLocaleId;
|
||||
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;
|
||||
if (Flag)
|
||||
{
|
||||
/* FIXME: Save the last known good boot */
|
||||
//Status = CmpSaveBootControlSet(Flag);
|
||||
/* Save the last known good boot */
|
||||
Status = CmpSaveBootControlSet(Flag);
|
||||
|
||||
/* Notify HAL */
|
||||
HalEndOfBoot();
|
||||
|
||||
@@ -1177,6 +1177,12 @@ CmGetSystemControlValues(
|
||||
IN PCM_SYSTEM_CONTROL_VECTOR ControlVector
|
||||
);
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
CmpSaveBootControlSet(
|
||||
IN USHORT ControlSet
|
||||
);
|
||||
|
||||
//
|
||||
// Hardware Configuration Routines
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user