Commit b8f072e9 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

shlwapi: Add a stub for IsInternetESCEnabled.

parent 138f1197
......@@ -567,6 +567,7 @@
@ stdcall IntlStrEqWorkerA(long str str long) StrIsIntlEqualA
@ stdcall IntlStrEqWorkerW(long wstr wstr long) StrIsIntlEqualW
@ stdcall IsCharSpaceA(long)
@ stdcall IsInternetESCEnabled()
@ stdcall PathAddBackslashA (str)
@ stdcall PathAddBackslashW (wstr)
@ stdcall PathAddExtensionA (str str)
......
......@@ -2621,3 +2621,12 @@ HRESULT WINAPI UrlFixupW(LPCWSTR url, LPWSTR translatedUrl, DWORD maxChars)
return S_OK;
}
/*************************************************************************
* IsInternetESCEnabled [SHLWAPI.@]
*/
BOOL WINAPI IsInternetESCEnabled(void)
{
FIXME(": stub\n");
return FALSE;
}
......@@ -955,6 +955,8 @@ VOID WINAPI ColorRGBToHLS(COLORREF,LPWORD,LPWORD,LPWORD);
#endif /* NO_SHLWAPI_GDI */
/* Security functions */
BOOL WINAPI IsInternetESCEnabled(void);
/* Stream functions */
#ifndef NO_SHLWAPI_STREAM
......
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