1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-01 07:14:31 +00:00

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:
Vijay Kiran Kamuju 2024-03-15 19:48:19 +01:00 committed by Alexandre Julliard
parent fa7c837f91
commit 2fd582e165
2 changed files with 11 additions and 0 deletions

View File

@ -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)

View File

@ -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