DSECIList

Service:eDirectory Event
Defined In:nwdsevnt.h

Structure

    typedef struct 
    { 
       uint32    numberOfStrings ; 
       uint32    length1 ; 
       unicode   string [1]; 
    } DSECIList;
    

Fields

numberOfStrings
Specifies the number of strings the structure holds.
length1
Specifies the length (in bytes) of the first string.
string
Specifies the location of the first string.

Remarks

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.