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
c3ecb724
Commit
c3ecb724
authored
Jun 29, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: More win64 compatibility fixes.
parent
01e21366
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
cookie.c
dlls/wininet/cookie.c
+8
-8
wininet.h
include/wininet.h
+4
-4
No files found.
dlls/wininet/cookie.c
View file @
c3ecb724
...
...
@@ -631,10 +631,10 @@ BOOL WINAPI InternetClearAllPerSiteCookieDecisions( VOID )
*
* See InternetEnumPerSiteCookieDecisionW.
*/
BOOL
WINAPI
InternetEnumPerSiteCookieDecisionA
(
LPSTR
pszSiteName
,
unsigned
long
*
pcSiteNameSize
,
unsigned
long
*
pdwDecision
,
unsigned
long
dwIndex
)
BOOL
WINAPI
InternetEnumPerSiteCookieDecisionA
(
LPSTR
pszSiteName
,
ULONG
*
pcSiteNameSize
,
ULONG
*
pdwDecision
,
ULONG
dwIndex
)
{
FIXME
(
"(%s, %p, %p, 0x%08
l
x) stub
\n
"
,
FIXME
(
"(%s, %p, %p, 0x%08x) stub
\n
"
,
debugstr_a
(
pszSiteName
),
pcSiteNameSize
,
pdwDecision
,
dwIndex
);
return
FALSE
;
}
...
...
@@ -649,10 +649,10 @@ BOOL WINAPI InternetEnumPerSiteCookieDecisionA( LPSTR pszSiteName, unsigned long
* FALSE on failure
*
*/
BOOL
WINAPI
InternetEnumPerSiteCookieDecisionW
(
LPWSTR
pszSiteName
,
unsigned
long
*
pcSiteNameSize
,
unsigned
long
*
pdwDecision
,
unsigned
long
dwIndex
)
BOOL
WINAPI
InternetEnumPerSiteCookieDecisionW
(
LPWSTR
pszSiteName
,
ULONG
*
pcSiteNameSize
,
ULONG
*
pdwDecision
,
ULONG
dwIndex
)
{
FIXME
(
"(%s, %p, %p, 0x%08
l
x) stub
\n
"
,
FIXME
(
"(%s, %p, %p, 0x%08x) stub
\n
"
,
debugstr_w
(
pszSiteName
),
pcSiteNameSize
,
pdwDecision
,
dwIndex
);
return
FALSE
;
}
...
...
@@ -660,7 +660,7 @@ BOOL WINAPI InternetEnumPerSiteCookieDecisionW( LPWSTR pszSiteName, unsigned lon
/***********************************************************************
* InternetGetPerSiteCookieDecisionA (WININET.@)
*/
BOOL
WINAPI
InternetGetPerSiteCookieDecisionA
(
LPCSTR
pwchHostName
,
unsigned
long
*
pResult
)
BOOL
WINAPI
InternetGetPerSiteCookieDecisionA
(
LPCSTR
pwchHostName
,
ULONG
*
pResult
)
{
FIXME
(
"(%s, %p) stub
\n
"
,
debugstr_a
(
pwchHostName
),
pResult
);
return
FALSE
;
...
...
@@ -669,7 +669,7 @@ BOOL WINAPI InternetGetPerSiteCookieDecisionA( LPCSTR pwchHostName, unsigned lon
/***********************************************************************
* InternetGetPerSiteCookieDecisionW (WININET.@)
*/
BOOL
WINAPI
InternetGetPerSiteCookieDecisionW
(
LPCWSTR
pwchHostName
,
unsigned
long
*
pResult
)
BOOL
WINAPI
InternetGetPerSiteCookieDecisionW
(
LPCWSTR
pwchHostName
,
ULONG
*
pResult
)
{
FIXME
(
"(%s, %p) stub
\n
"
,
debugstr_w
(
pwchHostName
),
pResult
);
return
FALSE
;
...
...
include/wininet.h
View file @
c3ecb724
...
...
@@ -1281,8 +1281,8 @@ BOOLAPI HttpQueryInfoW(HINTERNET ,DWORD ,LPVOID ,LPDWORD ,LPDWORD);
BOOLAPI
InternetClearAllPerSiteCookieDecisions
(
VOID
);
BOOLAPI
InternetEnumPerSiteCookieDecisionA
(
LPSTR
,
unsigned
long
*
,
unsigned
long
*
,
unsigned
long
);
BOOLAPI
InternetEnumPerSiteCookieDecisionW
(
LPWSTR
,
unsigned
long
*
,
unsigned
long
*
,
unsigned
long
);
BOOLAPI
InternetEnumPerSiteCookieDecisionA
(
LPSTR
,
ULONG
*
,
ULONG
*
,
ULONG
);
BOOLAPI
InternetEnumPerSiteCookieDecisionW
(
LPWSTR
,
ULONG
*
,
ULONG
*
,
ULONG
);
#define InternetEnumPerSiteCookieDecision WINELIB_NAME_AW(InternetEnumPerSiteCookieDecision)
#define INTERNET_COOKIE_IS_SECURE 0x00000001
...
...
@@ -1304,8 +1304,8 @@ DWORD WINAPI InternetSetCookieExA(LPCSTR,LPCSTR,LPCSTR,DWORD,DWORD_PTR);
DWORD
WINAPI
InternetSetCookieExW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
DWORD
,
DWORD_PTR
);
#define InternetSetCookieEx WINELIB_NAME_AW(InternetSetCookieEx)
BOOLAPI
InternetGetPerSiteCookieDecisionA
(
LPCSTR
,
unsigned
long
*
);
BOOLAPI
InternetGetPerSiteCookieDecisionW
(
LPCWSTR
,
unsigned
long
*
);
BOOLAPI
InternetGetPerSiteCookieDecisionA
(
LPCSTR
,
ULONG
*
);
BOOLAPI
InternetGetPerSiteCookieDecisionW
(
LPCWSTR
,
ULONG
*
);
#define InternetGetPerSiteCookieDecision WINELIB_NAME_AW(InternetGetPerSiteCookieDecision)
BOOLAPI
InternetSetPerSiteCookieDecisionA
(
LPCSTR
,
DWORD
);
...
...
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