Stubs for InternetCreateUrlA/W and CreateUrlCacheEntryA.
This commit is contained in:
parent
adc9b65022
commit
9bca6c6d4f
|
@ -2430,3 +2430,17 @@ BOOL WINAPI InternetCombineUrlW(LPCWSTR lpszBaseUrl, LPCWSTR lpszRelativeUrl,
|
|||
|
||||
return (hr==S_OK);
|
||||
}
|
||||
|
||||
BOOL WINAPI InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents, DWORD dwFlags,
|
||||
LPSTR lpszUrl, LPDWORD lpdwUrlLength)
|
||||
{
|
||||
FIXME("\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
|
||||
LPWSTR lpszUrl, LPDWORD lpdwUrlLength)
|
||||
{
|
||||
FIXME("\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -203,3 +203,20 @@ BOOL WINAPI SetUrlCacheEntryInfoW(LPCWSTR lpszUrlName, LPINTERNET_CACHE_ENTRY_IN
|
|||
FIXME("stub\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CreateUrlCacheEntryA (WININET.@)
|
||||
*
|
||||
*/
|
||||
BOOL WINAPI CreateUrlCacheEntryA(
|
||||
LPCSTR lpszUrlName,
|
||||
DWORD dwExpectedFileSize,
|
||||
LPCSTR lpszFileExtension,
|
||||
LPSTR lpszFileName,
|
||||
DWORD dwReserved)
|
||||
{
|
||||
FIXME("url=%s, size=%ld, ext=%s: stub\n",debugstr_a(lpszUrlName),
|
||||
dwExpectedFileSize, debugstr_a(lpszFileExtension));
|
||||
INTERNET_SetLastError(ERROR_FILE_NOT_FOUND);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
@ stub CommitUrlCacheEntryW
|
||||
@ stub CreateUrlCacheContainerA
|
||||
@ stub CreateUrlCacheContainerW
|
||||
@ stub CreateUrlCacheEntryA
|
||||
@ stdcall CreateUrlCacheEntryA(str long str ptr long)
|
||||
@ stub CreateUrlCacheEntryW
|
||||
@ stdcall CreateUrlCacheGroup(long ptr)
|
||||
@ stub DeleteIE3Cache
|
||||
|
@ -97,8 +97,8 @@
|
|||
@ stdcall InternetConnectW(ptr wstr long wstr wstr long long long)
|
||||
@ stdcall InternetCrackUrlA(str long long ptr)
|
||||
@ stdcall InternetCrackUrlW(wstr long long ptr)
|
||||
@ stub InternetCreateUrlA
|
||||
@ stub InternetCreateUrlW
|
||||
@ stdcall InternetCreateUrlA(ptr long ptr ptr)
|
||||
@ stdcall InternetCreateUrlW(ptr long ptr ptr)
|
||||
@ stub InternetDebugGetLocalTime
|
||||
@ stub InternetDial
|
||||
@ stub InternetErrorDlg
|
||||
|
|
Loading…
Reference in New Issue