# LDR\_DATA\_TABLE\_ENTRY

```csharp
public unsafe struct LDR_DATA_TABLE_ENTRY
{
    public void* Reserved1;
    public LIST_ENTRY InMemoryOrderLinks;
    public void* Reserved2;
    public void* DllBase;
    public void* Reserved3;
    public UNICODE_STRING FullDllName;
    public void* Reserved4;
    public void* Reserved5;
    public Anonymous Union;
    public uint TimeDateStamp;

    [StructLayout(LayoutKind.Explicit)]
    public struct Anonymous
    {
        [FieldOffset(0)]
        public uint CheckSum;

        [FieldOffset(0)]
        public void* Reserved6;
    }
}
```

[LIST\_ENTRY](/kernel/list_entry.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.pinvoke.dev/windows-programming/ldr_data_table_entry.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
