On Sun, Jun 7, 2020 at 11:10 PM Dmitry Timoshkov dmitry@baikal.ru wrote:
Alex Henrie alexhenrie24@gmail.com wrote:
-IMPORTS = user32 advapi32 +IMPORTS = user32 advapi32 shlwapi
What is this for? If for PathAppendW() then it's exported from kernelbase.
I'm pretty sure that I can't import kernelbase because it's not present on Windows XP. So instead I'm importing PathAppendW's old home, shlwapi, which simply forwards to kernelbase on newer versions of Windows.
-Alex