Andre K
Andre K

Reputation: 347

Meaning of windbg !dlls output

Does anyone know where I can find documentation about the output of windbg command !ddls? I'm mostly interested in the meaning of the Flags and LoadCount parameters, and what does it mean when the value of LoadCount is 0xffffffff.

I spent a day searching for this information on the NET, but didn't find anything useful.

Thanks in advance,

Andre

Upvotes: 2

Views: 456

Answers (1)

Player
Player

Reputation: 388

This link should help - Is 0x0000ffff the default load count of a dll in windows?

Snip from the same The load count for a DLL is a 16-bit value. If that value, treated as a signed short, is -1 (0xfffff) it indicates the DLL is statically linked, otherwise it's dynamically loaded.

Upvotes: 2

Related Questions