wininet: Use standard wine_dbgstr_longlong.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
cb13ee3bf1
commit
43deec95f6
|
@ -3420,8 +3420,8 @@ HANDLE WINAPI FindFirstUrlCacheEntryExA(
|
|||
LPVOID lpReserved3
|
||||
)
|
||||
{
|
||||
FIXME("(%s, 0x%08x, 0x%08x, 0x%08x%08x, %p, %p, %p, %p, %p) stub\n", debugstr_a(lpszUrlSearchPattern),
|
||||
dwFlags, dwFilter, (ULONG)(GroupId >> 32), (ULONG)GroupId, lpFirstCacheEntryInfo,
|
||||
FIXME("(%s, 0x%08x, 0x%08x, 0x%s, %p, %p, %p, %p, %p) stub\n", debugstr_a(lpszUrlSearchPattern),
|
||||
dwFlags, dwFilter, wine_dbgstr_longlong(GroupId), lpFirstCacheEntryInfo,
|
||||
lpdwFirstCacheEntryInfoBufferSize, lpReserved, pcbReserved2,lpReserved3);
|
||||
SetLastError(ERROR_FILE_NOT_FOUND);
|
||||
return NULL;
|
||||
|
@ -3439,8 +3439,8 @@ HANDLE WINAPI FindFirstUrlCacheEntryExW(
|
|||
LPVOID lpReserved3
|
||||
)
|
||||
{
|
||||
FIXME("(%s, 0x%08x, 0x%08x, 0x%08x%08x, %p, %p, %p, %p, %p) stub\n", debugstr_w(lpszUrlSearchPattern),
|
||||
dwFlags, dwFilter, (ULONG)(GroupId >> 32), (ULONG)GroupId, lpFirstCacheEntryInfo,
|
||||
FIXME("(%s, 0x%08x, 0x%08x, 0x%s, %p, %p, %p, %p, %p) stub\n", debugstr_w(lpszUrlSearchPattern),
|
||||
dwFlags, dwFilter, wine_dbgstr_longlong(GroupId), lpFirstCacheEntryInfo,
|
||||
lpdwFirstCacheEntryInfoBufferSize, lpReserved, pcbReserved2,lpReserved3);
|
||||
SetLastError(ERROR_FILE_NOT_FOUND);
|
||||
return NULL;
|
||||
|
@ -3716,8 +3716,8 @@ INTERNETAPI GROUPID WINAPI CreateUrlCacheGroup(DWORD dwFlags, LPVOID lpReserved)
|
|||
*/
|
||||
BOOL WINAPI DeleteUrlCacheGroup(GROUPID GroupId, DWORD dwFlags, LPVOID lpReserved)
|
||||
{
|
||||
FIXME("(0x%08x%08x, 0x%08x, %p) stub\n",
|
||||
(ULONG)(GroupId >> 32), (ULONG)GroupId, dwFlags, lpReserved);
|
||||
FIXME("(0x%s, 0x%08x, %p) stub\n",
|
||||
wine_dbgstr_longlong(GroupId), dwFlags, lpReserved);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -3739,8 +3739,8 @@ BOOL WINAPI SetUrlCacheEntryGroupA(LPCSTR lpszUrlName, DWORD dwFlags,
|
|||
GROUPID GroupId, LPBYTE pbGroupAttributes, DWORD cbGroupAttributes,
|
||||
LPVOID lpReserved)
|
||||
{
|
||||
FIXME("(%s, 0x%08x, 0x%08x%08x, %p, 0x%08x, %p) stub\n",
|
||||
debugstr_a(lpszUrlName), dwFlags, (ULONG)(GroupId >> 32), (ULONG)GroupId,
|
||||
FIXME("(%s, 0x%08x, 0x%s, %p, 0x%08x, %p) stub\n",
|
||||
debugstr_a(lpszUrlName), dwFlags, wine_dbgstr_longlong(GroupId),
|
||||
pbGroupAttributes, cbGroupAttributes, lpReserved);
|
||||
SetLastError(ERROR_FILE_NOT_FOUND);
|
||||
return FALSE;
|
||||
|
@ -3754,8 +3754,8 @@ BOOL WINAPI SetUrlCacheEntryGroupW(LPCWSTR lpszUrlName, DWORD dwFlags,
|
|||
GROUPID GroupId, LPBYTE pbGroupAttributes, DWORD cbGroupAttributes,
|
||||
LPVOID lpReserved)
|
||||
{
|
||||
FIXME("(%s, 0x%08x, 0x%08x%08x, %p, 0x%08x, %p) stub\n",
|
||||
debugstr_w(lpszUrlName), dwFlags, (ULONG)(GroupId >> 32), (ULONG)GroupId,
|
||||
FIXME("(%s, 0x%08x, 0x%s, %p, 0x%08x, %p) stub\n",
|
||||
debugstr_w(lpszUrlName), dwFlags, wine_dbgstr_longlong(GroupId),
|
||||
pbGroupAttributes, cbGroupAttributes, lpReserved);
|
||||
SetLastError(ERROR_FILE_NOT_FOUND);
|
||||
return FALSE;
|
||||
|
@ -3785,8 +3785,8 @@ BOOL WINAPI GetUrlCacheGroupAttributeA( GROUPID gid, DWORD dwFlags, DWORD dwAttr
|
|||
LPINTERNET_CACHE_GROUP_INFOA lpGroupInfo,
|
||||
LPDWORD lpdwGroupInfo, LPVOID lpReserved )
|
||||
{
|
||||
FIXME("(0x%08x%08x, 0x%08x, 0x%08x, %p, %p, %p) stub\n",
|
||||
(ULONG)(gid >> 32), (ULONG)gid, dwFlags, dwAttributes, lpGroupInfo,
|
||||
FIXME("(0x%s, 0x%08x, 0x%08x, %p, %p, %p) stub\n",
|
||||
wine_dbgstr_longlong(gid), dwFlags, dwAttributes, lpGroupInfo,
|
||||
lpdwGroupInfo, lpReserved);
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -3795,8 +3795,8 @@ BOOL WINAPI GetUrlCacheGroupAttributeW( GROUPID gid, DWORD dwFlags, DWORD dwAttr
|
|||
LPINTERNET_CACHE_GROUP_INFOW lpGroupInfo,
|
||||
LPDWORD lpdwGroupInfo, LPVOID lpReserved )
|
||||
{
|
||||
FIXME("(0x%08x%08x, 0x%08x, 0x%08x, %p, %p, %p) stub\n",
|
||||
(ULONG)(gid >> 32), (ULONG)gid, dwFlags, dwAttributes, lpGroupInfo,
|
||||
FIXME("(0x%s, 0x%08x, 0x%08x, %p, %p, %p) stub\n",
|
||||
wine_dbgstr_longlong(gid), dwFlags, dwAttributes, lpGroupInfo,
|
||||
lpdwGroupInfo, lpReserved);
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -3804,16 +3804,16 @@ BOOL WINAPI GetUrlCacheGroupAttributeW( GROUPID gid, DWORD dwFlags, DWORD dwAttr
|
|||
BOOL WINAPI SetUrlCacheGroupAttributeA( GROUPID gid, DWORD dwFlags, DWORD dwAttributes,
|
||||
LPINTERNET_CACHE_GROUP_INFOA lpGroupInfo, LPVOID lpReserved )
|
||||
{
|
||||
FIXME("(0x%08x%08x, 0x%08x, 0x%08x, %p, %p) stub\n",
|
||||
(ULONG)(gid >> 32), (ULONG)gid, dwFlags, dwAttributes, lpGroupInfo, lpReserved);
|
||||
FIXME("(0x%s, 0x%08x, 0x%08x, %p, %p) stub\n",
|
||||
wine_dbgstr_longlong(gid), dwFlags, dwAttributes, lpGroupInfo, lpReserved);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
BOOL WINAPI SetUrlCacheGroupAttributeW( GROUPID gid, DWORD dwFlags, DWORD dwAttributes,
|
||||
LPINTERNET_CACHE_GROUP_INFOW lpGroupInfo, LPVOID lpReserved )
|
||||
{
|
||||
FIXME("(0x%08x%08x, 0x%08x, 0x%08x, %p, %p) stub\n",
|
||||
(ULONG)(gid >> 32), (ULONG)gid, dwFlags, dwAttributes, lpGroupInfo, lpReserved);
|
||||
FIXME("(0x%s, 0x%08x, 0x%08x, %p, %p) stub\n",
|
||||
wine_dbgstr_longlong(gid), dwFlags, dwAttributes, lpGroupInfo, lpReserved);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue