urlmon: Add stub for FlushUrlmonZonesCache.
This commit is contained in:
parent
59c30130a0
commit
fee3d67030
|
@ -105,3 +105,4 @@
|
||||||
423 stdcall @(long long long long) LogSqmUXCommandOffsetInternal
|
423 stdcall @(long long long long) LogSqmUXCommandOffsetInternal
|
||||||
444 stdcall @(long long long) MapUriToBrowserEmulationState
|
444 stdcall @(long long long) MapUriToBrowserEmulationState
|
||||||
445 stdcall @(long long) MapBrowserEmulationModeToUserAgent
|
445 stdcall @(long long) MapBrowserEmulationModeToUserAgent
|
||||||
|
455 stdcall @() FlushUrlmonZonesCache
|
||||||
|
|
|
@ -1165,6 +1165,15 @@ int WINAPI MapBrowserEmulationModeToUserAgent(DWORD unk1, DWORD unk2)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* FlushUrlmonZonesCache (URLMON.455)
|
||||||
|
* Undocumented, added in IE8
|
||||||
|
*/
|
||||||
|
void WINAPI FlushUrlmonZonesCache(void)
|
||||||
|
{
|
||||||
|
FIXME("stub\n");
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* RegisterMediaTypes
|
* RegisterMediaTypes
|
||||||
* Added in IE3, registers known MIME-type strings.
|
* Added in IE3, registers known MIME-type strings.
|
||||||
|
|
Loading…
Reference in New Issue