Our PDCLib port so far used its own IMAGE_TLS_DIRECTORY struct. This conflicts with winapi, now that winapi is more complete, which is why IMAGE_TLS_DIRECTORY is not included there yet (it would just be a typedef to IMAGE_TLS_DIRECTORY32.
This PR removes the struct definition from PDCLib, and uses IMAGE_TLS_DIRECTORY32 from winapi instead.
Our PDCLib port so far used its own
IMAGE_TLS_DIRECTORY
struct. This conflicts with winapi, now that winapi is more complete, which is whyIMAGE_TLS_DIRECTORY
is not included there yet (it would just be a typedef toIMAGE_TLS_DIRECTORY32
. This PR removes the struct definition from PDCLib, and usesIMAGE_TLS_DIRECTORY32
from winapi instead.