having this error although shlwapi.h has been included..
Error LNK2019 unresolved external symbol __imp__PathCombineW@12 referenced in function "bool __cdecl Fs::_pathCombine(wchar_t *,wchar_t * const,wchar_t * const)" (?_pathCombine@Fs@@YA_NPA_WQA_W1@Z) NewZeV C:\Users\mike\Desktop\workspace\NV\fs.obj 1
code snippet
bool Fs::_pathCombine(LPWSTR dest, const LPWSTR dir, const LPWSTR file)
{
LPWSTR p = (LPWSTR)file;
if (p != NULL)while (*p == '\\' || *p == '/')p++;
return CWA(shlwapi, PathCombineW)(dest, dir, p) == NULL ? false : true;
}
how do I ago about solving this linking error? I'm using visual studio 2015