Commit 2ef72411 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

urlmon: Added IsLoggingEnabled[AW] stub implementation.

parent c5866d36
...@@ -51,8 +51,8 @@ ...@@ -51,8 +51,8 @@
@ stub HlinkSimpleNavigateToMoniker @ stub HlinkSimpleNavigateToMoniker
@ stdcall HlinkSimpleNavigateToString(wstr wstr wstr ptr ptr ptr long long) @ stdcall HlinkSimpleNavigateToString(wstr wstr wstr ptr ptr ptr long long)
@ stdcall IsAsyncMoniker(ptr) @ stdcall IsAsyncMoniker(ptr)
@ stub IsLoggingEnabledA @ stdcall IsLoggingEnabledA(str)
@ stub IsLoggingEnabledW @ stdcall IsLoggingEnabledW(wstr)
@ stdcall IsValidURL(ptr wstr long) @ stdcall IsValidURL(ptr wstr long)
@ stdcall MkParseDisplayNameEx(ptr wstr ptr ptr) @ stdcall MkParseDisplayNameEx(ptr wstr ptr ptr)
@ stdcall ObtainUserAgentString(long str ptr) @ stdcall ObtainUserAgentString(long str ptr)
......
...@@ -767,3 +767,21 @@ HRESULT WINAPI Extract(void *dest, LPCSTR szCabName) ...@@ -767,3 +767,21 @@ HRESULT WINAPI Extract(void *dest, LPCSTR szCabName)
return pExtract(dest, 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") ...@@ -1461,6 +1461,10 @@ cpp_quote("#define OInetCombineUrl CoInternetCombineUrl")
cpp_quote("#define OInetCompareUrl CoInternetCompareUrl") cpp_quote("#define OInetCompareUrl CoInternetCompareUrl")
cpp_quote("#define OInetGetSession CoInternetGetSession") 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 MKSYS_URLMONIKER 6")
cpp_quote("#define URL_MK_LEGACY 0") cpp_quote("#define URL_MK_LEGACY 0")
cpp_quote("#define URL_MK_UNIFORM 1") cpp_quote("#define URL_MK_UNIFORM 1")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment