I sometimes use this: DeleteUrlCacheEntry
But when I updated to 9.0 it is no longer found.
DeleteUrlCacheEntry and DeleteUrlCacheEntryA are the same feature according to Microsoft. I switched to DeleteUrlCacheEntryA and then it works again.
https://docs.microsoft.com/en-us/windows/win32/api/wininet/nf-wininet-deleteurlcacheentryaThese are the same:
BOOLAPI DeleteUrlCacheEntry (
LPCSTR lpszUrlName
);
and
BOOLAPI DeleteUrlCacheEntryA (
LPCSTR lpszUrlName
);
But this one is not the same:
BOOLAPI DeleteUrlCacheEntryW (
LPCWSTR lpszUrlName
);
So it should say in wininet.h:
#define DeleteUrlCacheEntry DeleteUrlCacheEntryA
But when I go into the wininet.h file that comes with Pelles C, I see this:
#define DeleteUrlCacheEntry DeleteUrlCacheEntryW
Is it something wrong or am I wrong and why did it work in earlier version but not in 9.0?