Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
43deec95
Commit
43deec95
authored
Aug 25, 2017
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Aug 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Use standard wine_dbgstr_longlong.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cb13ee3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
urlcache.c
dlls/wininet/urlcache.c
+18
-18
No files found.
dlls/wininet/urlcache.c
View file @
43deec95
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment