mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 10:12:01 +00:00
urlmon: Added IsLoggingEnabled[AW] stub implementation.
This commit is contained in:
parent
c5866d3696
commit
2ef724113a
@ -51,8 +51,8 @@
|
||||
@ stub HlinkSimpleNavigateToMoniker
|
||||
@ stdcall HlinkSimpleNavigateToString(wstr wstr wstr ptr ptr ptr long long)
|
||||
@ stdcall IsAsyncMoniker(ptr)
|
||||
@ stub IsLoggingEnabledA
|
||||
@ stub IsLoggingEnabledW
|
||||
@ stdcall IsLoggingEnabledA(str)
|
||||
@ stdcall IsLoggingEnabledW(wstr)
|
||||
@ stdcall IsValidURL(ptr wstr long)
|
||||
@ stdcall MkParseDisplayNameEx(ptr wstr ptr ptr)
|
||||
@ stdcall ObtainUserAgentString(long str ptr)
|
||||
|
@ -767,3 +767,21 @@ HRESULT WINAPI Extract(void *dest, LPCSTR szCabName)
|
||||
|
||||
return pExtract(dest, szCabName);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* IsLoggingEnabledA (URLMON.@)
|
||||
*/
|
||||
BOOL WINAPI IsLoggingEnabledA(LPCSTR url)
|
||||
{
|
||||
FIXME("(%s)\n", debugstr_a(url));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* IsLoggingEnabledW (URLMON.@)
|
||||
*/
|
||||
BOOL WINAPI IsLoggingEnabledW(LPCWSTR url)
|
||||
{
|
||||
FIXME("(%s)\n", debugstr_w(url));
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -1461,6 +1461,10 @@ cpp_quote("#define OInetCombineUrl CoInternetCombineUrl")
|
||||
cpp_quote("#define OInetCompareUrl CoInternetCompareUrl")
|
||||
cpp_quote("#define OInetGetSession CoInternetGetSession")
|
||||
|
||||
cpp_quote("BOOL WINAPI IsLoggingEnabledA(LPCSTR);")
|
||||
cpp_quote("BOOL WINAPI IsLoggingEnabledW(LPCWSTR);")
|
||||
cpp_quote("#define IsLoggingEnabled WINELIB_NAME_AW(IsLoggingEnabled)")
|
||||
|
||||
cpp_quote("#define MKSYS_URLMONIKER 6")
|
||||
cpp_quote("#define URL_MK_LEGACY 0")
|
||||
cpp_quote("#define URL_MK_UNIFORM 1")
|
||||
|
Loading…
x
Reference in New Issue
Block a user