DSECIList
typedef struct
{
uint32 numberOfStrings ;
uint32 length1 ;
unicode string [1];
} DSECIList;
The strings in this structure are null terminated, and aligned on 4-byte boundaries. If necessary, the strings are padded to fit those boundaries. The value in length does not include the bytes used for padding.
The first uint32 (4 bytes) after the first string contains the length of the second string. The second string follows the length. Any remaining strings follow this pattern.
The Unicode strings are in Intel format, lo-hi order.