Have the functions moved to a separate .lib
Thanks,
Flavio.
1>folder_shel.obj : error LNK2019: unresolved external symbol "int __stdcall lstrlenWInternal(wchar_t const *)" ( lstrlenWInternal@@YGHPB_W@Z) referenced in function "int __cdecl ocslen(wchar_t const *)" ( ocslen@@YAHPB_W@Z)

lstrlenWInternal Link problems
johnFromJersey
Putting #undef lstrlenW after the include solved the problem.
I have still many other link problems (see the post on STL and Boost) but at least one is solved.
Thanks!
Daniel Chait
#include <windows.h>
int main()
{
lstrlenW(L"");
lstrlenA("");
}
I think you have some header which defines "lstrW to lstrWInternal!!
Greetings
Jochen