
int WINAPI EnumerateCacheOld(HWND hX)
Quote:
> Hi,all:
> I use "int WINAPI EnumerateCacheOld(HWND hX)" reference MS
> article.Then,use "EnumerateCacheOld(GetSafeHwnd())" to call it.When
> compiles,it produce this error:"error LNK2001: unresolved external symbol
The documentation for FindNextUrlCacheEntry say you need to link against 'wininet.lib'. One way is
to add a line like...
#pragma comment(lib, "wininet")
...to the module that uses the API function.
--
Jeff Partch [MVP]