mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-31 01:40:42 +00:00
IndexedStructure
This commit is contained in:
@@ -75,7 +75,7 @@ namespace Esiur.Data
|
||||
Ends = ends
|
||||
};
|
||||
}
|
||||
else if (cls == TduClass.Typed)
|
||||
else if ((h & 0xC7) == 0x80) // cls == TduClass = Typed & Identifier = Typed
|
||||
{
|
||||
ulong cll = (ulong)(h >> 3) & 0x7;
|
||||
|
||||
@@ -206,7 +206,7 @@ namespace Esiur.Data
|
||||
Ends = ends
|
||||
};
|
||||
}
|
||||
else if (cls == TduClass.Typed)
|
||||
else if ((h & 0xC7) == 0x80) // else if (cls == TduClass.Typed)
|
||||
{
|
||||
ulong cll = (ulong)(h >> 3) & 0x7;
|
||||
|
||||
@@ -395,7 +395,7 @@ namespace Esiur.Data
|
||||
Ends = ends
|
||||
};
|
||||
}
|
||||
else if (cls == TduClass.Typed)
|
||||
else if ((h & 0xC7) == 0x80) // (cls == TduClass.Typed)
|
||||
{
|
||||
ulong cll = (ulong)(h >> 3) & 0x7;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user