urlmon: Added IsLoggingEnabled[AW] stub implementation.

This commit is contained in:
Jacek Caban 2008-10-23 16:19:27 -07:00 committed by Alexandre Julliard
parent c5866d3696
commit 2ef724113a
3 changed files with 24 additions and 2 deletions

View File

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

View File

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

View File

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