sonyps5201314 / msvcr14x

msvcr14x is a program that allows programs compiled with VC2015 and above not to rely on a bunch of useless API-Ms-win-starting DLLS
Apache License 2.0
56 stars 17 forks source link

about ntdll library #12

Closed sinfee closed 2 months ago

sinfee commented 2 months ago

In the generated .user.props property file, I only saw the configuration for the IncludePath file, but I did not see the configuration for AdditionalLibraryDirectories in the ntdll.ib file.

E:\opensrcs\github\devtools\msvcbuild\ntdll\include;$(IncludePath) $(msvcr14x_ROOT)\Release;$(msvcr14x_ROOT)\Debug;%(AdditionalLibraryDirectories)
sonyps5201314 commented 2 months ago

Higher versions of the Windows SDK (such as C:\Program Files (x86)\Windows Kits\10\Lib\10.0.26100.0\um\x86) already include ntdll.lib, so this lower version ntdll.lib will not be used by users by default, unless the user manually introduces it.

sinfee commented 2 months ago

Ok, thank you very much for your support