urlmon: Add stub for ordinal 414.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53635 Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52352 Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48085
This commit is contained in:
parent
fa7c837f91
commit
2fd582e165
2 changed files with 11 additions and 0 deletions
|
@ -108,6 +108,7 @@
|
|||
363 stdcall @(long long ptr) propsys.InitVariantFromResource
|
||||
387 stdcall @(ptr long) propsys.VariantToUInt32WithDefault
|
||||
410 stdcall @(long long) LogSqmBits
|
||||
414 stdcall @(long long) LogSqmIncrement
|
||||
423 stdcall @(long long long long) LogSqmUXCommandOffsetInternal
|
||||
444 stdcall @(long long long) MapUriToBrowserEmulationState
|
||||
445 stdcall -noname MapBrowserEmulationModeToUserAgent(ptr ptr)
|
||||
|
|
|
@ -770,6 +770,16 @@ int WINAPI LogSqmBits(DWORD unk1, DWORD unk2)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* LogSqmIncrement (URLMON.414)
|
||||
* Undocumented, added in IE8
|
||||
*/
|
||||
int WINAPI LogSqmIncrement(DWORD unk1, DWORD unk2)
|
||||
{
|
||||
FIXME("stub: %ld %ld\n", unk1, unk2);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* LogSqmUXCommandOffsetInternal (URLMON.423)
|
||||
* Undocumented, added in IE8
|
||||
|
|
Loading…
Add table
Reference in a new issue