LIST_ENTRY

public unsafe struct LIST_ENTRY
{
    public LIST_ENTRY* Flink;
    public LIST_ENTRY* Blink;
}

Last updated