mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[CMLIB] Revert previous commit to avoid future merges of other devs
because George is having an open Draft PR since July 2022, which might also touch this file on master in some years. And it ofc is easier for me to revert my work now, then for him to go through the great lengths of merging his work then.
This commit is contained in:
parent
1ae6cb7a96
commit
7f80d5ee79
1 changed files with 8 additions and 3 deletions
|
@ -13,8 +13,6 @@ static BOOLEAN CMAPI
|
|||
HvpWriteLog(
|
||||
PHHIVE RegistryHive)
|
||||
{
|
||||
UNIMPLEMENTED_ONCE;
|
||||
#if 0 // UNIMPLEMENTED
|
||||
ULONG FileOffset;
|
||||
UINT32 BufferSize;
|
||||
UINT32 BitmapSize;
|
||||
|
@ -24,6 +22,13 @@ HvpWriteLog(
|
|||
ULONG LastIndex;
|
||||
PVOID BlockPtr;
|
||||
BOOLEAN Success;
|
||||
static ULONG PrintCount = 0;
|
||||
|
||||
if (PrintCount++ == 0)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
return TRUE;
|
||||
|
||||
ASSERT(RegistryHive->ReadOnly == FALSE);
|
||||
ASSERT(RegistryHive->BaseBlock->Length ==
|
||||
|
@ -134,7 +139,7 @@ HvpWriteLog(
|
|||
{
|
||||
DPRINT("FileFlush failed\n");
|
||||
}
|
||||
#endif // UNIMPLEMENTED
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue