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
This commit is contained in:
Aleksey Bragin 2006-08-18 22:03:36 +00:00
parent 5cd8f73f12
commit c0f94a72fc

View file

@ -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 <poppack.h>