shlwapi: Add a stub for IsInternetESCEnabled.

This commit is contained in:
Austin English 2013-02-11 11:52:27 -08:00 committed by Alexandre Julliard
parent 138f119705
commit b8f072e910
3 changed files with 12 additions and 0 deletions

View file

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

View file

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

View file

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