On 2/28/2018 4:24 PM, Jacek Caban wrote:
Hi Nikolay,
On 02/28/2018 11:54 AM, Nikolay Sivov wrote:
+START_TEST(path) +{
- HMODULE hmod = LoadLibraryA("kernelbase.dll");
- pPathCchCombineEx = (void *)GetProcAddress(hmod, "PathCchCombineEx");
Is there a reason not to link to kernelbase.dll directly?
I only did that because we don't have an export yet. I was going to look first at what needs to be done for shlwapi implementation to make all tests pass, and we don't want to link to shlwapi of course.
With that done this should be switched to using import library of course.
Jacek