What is the meaning / use of IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG?

In Portable Executable format, there is a directory named IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG. Can someone provide a url with a good explanation of this directory and its actual use? Why do some applications use this feature?

+4
source share
1 answer

It seems that it was originally used for some rarely used functions (for example, LockPrefixTable, I saw this only in kernel32.dll). These days, you usually see that it is used for the / safeseh (SEHandlerTable / SEHandlerCount) function.

+3
source

All Articles