From c0f94a72fcb91b7ac7e4fa9ea417d41d0331582c Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Fri, 18 Aug 2006 22:03:36 +0000 Subject: [PATCH] According to Filip Navara, HCELL's structure is 1. No plans to support NT 3.x hives (thus no need for OldCell / NewCell) 2. Cmlib is a bit architecturally different from NT's implementation: "... i don't need the UserData, because that is what i return ... i don't consider it part of the header anymore" svn path=/trunk/; revision=23605 --- reactos/lib/cmlib/hivedata.h | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/reactos/lib/cmlib/hivedata.h b/reactos/lib/cmlib/hivedata.h index d7a5ec94a81..3857158bc1c 100644 --- a/reactos/lib/cmlib/hivedata.h +++ b/reactos/lib/cmlib/hivedata.h @@ -123,26 +123,6 @@ typedef struct _HCELL { /* <0 if used, >0 if free */ LONG Size; - union - { - struct - { - ULONG Last; - union - { - ULONG UserData; - HCELL_INDEX Next; - } u; - } OldCell; - struct - { - union - { - ULONG UserData; - HCELL_INDEX Next; - } u; - } NewCell; - } u; } HCELL, *PHCELL; #include