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
153aac01
Commit
153aac01
authored
Mar 14, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Mar 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Move cookie-related stubs to cookie.c
parent
5b5d4558
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
149 additions
and
82 deletions
+149
-82
cookie.c
dlls/wininet/cookie.c
+149
-0
internet.c
dlls/wininet/internet.c
+0
-82
No files found.
dlls/wininet/cookie.c
View file @
153aac01
...
...
@@ -504,3 +504,152 @@ BOOL WINAPI InternetSetCookieA(LPCSTR lpszUrl, LPCSTR lpszCookieName,
return
r
;
}
/***********************************************************************
* InternetSetCookieExA (WININET.@)
*
* See InternetSetCookieExW.
*/
DWORD
WINAPI
InternetSetCookieExA
(
LPCSTR
lpszURL
,
LPCSTR
lpszCookieName
,
LPCSTR
lpszCookieData
,
DWORD
dwFlags
,
DWORD_PTR
dwReserved
)
{
FIXME
(
"(%s, %s, %s, 0x%08lx, 0x%08lx) stub
\n
"
,
debugstr_a
(
lpszURL
),
debugstr_a
(
lpszCookieName
),
debugstr_a
(
lpszCookieData
),
dwFlags
,
dwReserved
);
return
TRUE
;
}
/***********************************************************************
* InternetSetCookieExW (WININET.@)
*
* Sets a cookie for the specified URL.
*
* RETURNS
* TRUE on success
* FALSE on failure
*
*/
DWORD
WINAPI
InternetSetCookieExW
(
LPCWSTR
lpszURL
,
LPCWSTR
lpszCookieName
,
LPCWSTR
lpszCookieData
,
DWORD
dwFlags
,
DWORD_PTR
dwReserved
)
{
FIXME
(
"(%s, %s, %s, 0x%08lx, 0x%08lx) stub
\n
"
,
debugstr_w
(
lpszURL
),
debugstr_w
(
lpszCookieName
),
debugstr_w
(
lpszCookieData
),
dwFlags
,
dwReserved
);
return
TRUE
;
}
/***********************************************************************
* InternetGetCookieExA (WININET.@)
*
* See InternetGetCookieExW.
*/
BOOL
WINAPI
InternetGetCookieExA
(
LPCSTR
pchURL
,
LPCSTR
pchCookieName
,
LPSTR
pchCookieData
,
LPDWORD
pcchCookieData
,
DWORD
dwFlags
,
LPVOID
lpReserved
)
{
FIXME
(
"(%s, %s, %s, %p, 0x%08lx, %p) stub
\n
"
,
debugstr_a
(
pchURL
),
debugstr_a
(
pchCookieName
),
debugstr_a
(
pchCookieData
),
pcchCookieData
,
dwFlags
,
lpReserved
);
return
FALSE
;
}
/***********************************************************************
* InternetGetCookieExW (WININET.@)
*
* Retrieve cookie for the specified URL.
*
* RETURNS
* TRUE on success
* FALSE on failure
*
*/
BOOL
WINAPI
InternetGetCookieExW
(
LPCWSTR
pchURL
,
LPCWSTR
pchCookieName
,
LPWSTR
pchCookieData
,
LPDWORD
pcchCookieData
,
DWORD
dwFlags
,
LPVOID
lpReserved
)
{
FIXME
(
"(%s, %s, %s, %p, 0x%08lx, %p) stub
\n
"
,
debugstr_w
(
pchURL
),
debugstr_w
(
pchCookieName
),
debugstr_w
(
pchCookieData
),
pcchCookieData
,
dwFlags
,
lpReserved
);
return
FALSE
;
}
/***********************************************************************
* InternetClearAllPerSiteCookieDecisions (WININET.@)
*
* Clears all per-site decisions about cookies.
*
* RETURNS
* TRUE on success
* FALSE on failure
*
*/
BOOL
WINAPI
InternetClearAllPerSiteCookieDecisions
(
VOID
)
{
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
/***********************************************************************
* InternetEnumPerSiteCookieDecisionA (WININET.@)
*
* See InternetEnumPerSiteCookieDecisionW.
*/
BOOL
WINAPI
InternetEnumPerSiteCookieDecisionA
(
LPSTR
pszSiteName
,
unsigned
long
*
pcSiteNameSize
,
unsigned
long
*
pdwDecision
,
unsigned
long
dwIndex
)
{
FIXME
(
"(%s, %p, %p, 0x%08lx) stub
\n
"
,
debugstr_a
(
pszSiteName
),
pcSiteNameSize
,
pdwDecision
,
dwIndex
);
return
FALSE
;
}
/***********************************************************************
* InternetEnumPerSiteCookieDecisionW (WININET.@)
*
* Enumerates all per-site decisions about cookies.
*
* RETURNS
* TRUE on success
* FALSE on failure
*
*/
BOOL
WINAPI
InternetEnumPerSiteCookieDecisionW
(
LPWSTR
pszSiteName
,
unsigned
long
*
pcSiteNameSize
,
unsigned
long
*
pdwDecision
,
unsigned
long
dwIndex
)
{
FIXME
(
"(%s, %p, %p, 0x%08lx) stub
\n
"
,
debugstr_w
(
pszSiteName
),
pcSiteNameSize
,
pdwDecision
,
dwIndex
);
return
FALSE
;
}
/***********************************************************************
* InternetGetPerSiteCookieDecisionA (WININET.@)
*/
BOOL
WINAPI
InternetGetPerSiteCookieDecisionA
(
LPCSTR
pwchHostName
,
unsigned
long
*
pResult
)
{
FIXME
(
"(%s, %p) stub
\n
"
,
debugstr_a
(
pwchHostName
),
pResult
);
return
FALSE
;
}
/***********************************************************************
* InternetGetPerSiteCookieDecisionW (WININET.@)
*/
BOOL
WINAPI
InternetGetPerSiteCookieDecisionW
(
LPCWSTR
pwchHostName
,
unsigned
long
*
pResult
)
{
FIXME
(
"(%s, %p) stub
\n
"
,
debugstr_w
(
pwchHostName
),
pResult
);
return
FALSE
;
}
/***********************************************************************
* InternetSetPerSiteCookieDecisionA (WININET.@)
*/
BOOL
WINAPI
InternetSetPerSiteCookieDecisionA
(
LPCSTR
pchHostName
,
DWORD
dwDecision
)
{
FIXME
(
"(%s, 0x%08lx) stub
\n
"
,
debugstr_a
(
pchHostName
),
dwDecision
);
return
FALSE
;
}
/***********************************************************************
* InternetSetPerSiteCookieDecisionW (WININET.@)
*/
BOOL
WINAPI
InternetSetPerSiteCookieDecisionW
(
LPCWSTR
pchHostName
,
DWORD
dwDecision
)
{
FIXME
(
"(%s, 0x%08lx) stub
\n
"
,
debugstr_w
(
pchHostName
),
dwDecision
);
return
FALSE
;
}
dlls/wininet/internet.c
View file @
153aac01
...
...
@@ -4139,88 +4139,6 @@ BOOL WINAPI CreateMD5SSOHash( PWSTR pszChallengeInfo, PWSTR pwszRealm, PWSTR pws
return
FALSE
;
}
BOOL
WINAPI
InternetClearAllPerSiteCookieDecisions
(
VOID
)
{
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
BOOL
WINAPI
InternetEnumPerSiteCookieDecisionA
(
LPSTR
pszSiteName
,
unsigned
long
*
pcSiteNameSize
,
unsigned
long
*
pdwDecision
,
unsigned
long
dwIndex
)
{
FIXME
(
"(%s, %p, %p, 0x%08lx) stub
\n
"
,
debugstr_a
(
pszSiteName
),
pcSiteNameSize
,
pdwDecision
,
dwIndex
);
return
FALSE
;
}
BOOL
WINAPI
InternetEnumPerSiteCookieDecisionW
(
LPWSTR
pszSiteName
,
unsigned
long
*
pcSiteNameSize
,
unsigned
long
*
pdwDecision
,
unsigned
long
dwIndex
)
{
FIXME
(
"(%s, %p, %p, 0x%08lx) stub
\n
"
,
debugstr_w
(
pszSiteName
),
pcSiteNameSize
,
pdwDecision
,
dwIndex
);
return
FALSE
;
}
BOOL
WINAPI
InternetGetCookieExA
(
LPCSTR
pchURL
,
LPCSTR
pchCookieName
,
LPSTR
pchCookieData
,
LPDWORD
pcchCookieData
,
DWORD
dwFlags
,
LPVOID
lpReserved
)
{
FIXME
(
"(%s, %s, %s, %p, 0x%08lx, %p) stub
\n
"
,
debugstr_a
(
pchURL
),
debugstr_a
(
pchCookieName
),
debugstr_a
(
pchCookieData
),
pcchCookieData
,
dwFlags
,
lpReserved
);
return
FALSE
;
}
BOOL
WINAPI
InternetGetCookieExW
(
LPCWSTR
pchURL
,
LPCWSTR
pchCookieName
,
LPWSTR
pchCookieData
,
LPDWORD
pcchCookieData
,
DWORD
dwFlags
,
LPVOID
lpReserved
)
{
FIXME
(
"(%s, %s, %s, %p, 0x%08lx, %p) stub
\n
"
,
debugstr_w
(
pchURL
),
debugstr_w
(
pchCookieName
),
debugstr_w
(
pchCookieData
),
pcchCookieData
,
dwFlags
,
lpReserved
);
return
FALSE
;
}
BOOL
WINAPI
InternetGetPerSiteCookieDecisionA
(
LPCSTR
pwchHostName
,
unsigned
long
*
pResult
)
{
FIXME
(
"(%s, %p) stub
\n
"
,
debugstr_a
(
pwchHostName
),
pResult
);
return
FALSE
;
}
BOOL
WINAPI
InternetGetPerSiteCookieDecisionW
(
LPCWSTR
pwchHostName
,
unsigned
long
*
pResult
)
{
FIXME
(
"(%s, %p) stub
\n
"
,
debugstr_w
(
pwchHostName
),
pResult
);
return
FALSE
;
}
BOOL
WINAPI
InternetSetPerSiteCookieDecisionA
(
LPCSTR
pchHostName
,
DWORD
dwDecision
)
{
FIXME
(
"(%s, 0x%08lx) stub
\n
"
,
debugstr_a
(
pchHostName
),
dwDecision
);
return
FALSE
;
}
BOOL
WINAPI
InternetSetPerSiteCookieDecisionW
(
LPCWSTR
pchHostName
,
DWORD
dwDecision
)
{
FIXME
(
"(%s, 0x%08lx) stub
\n
"
,
debugstr_w
(
pchHostName
),
dwDecision
);
return
FALSE
;
}
DWORD
WINAPI
InternetSetCookieExA
(
LPCSTR
lpszURL
,
LPCSTR
lpszCookieName
,
LPCSTR
lpszCookieData
,
DWORD
dwFlags
,
DWORD_PTR
dwReserved
)
{
FIXME
(
"(%s, %s, %s, 0x%08lx, 0x%08lx) stub
\n
"
,
debugstr_a
(
lpszURL
),
debugstr_a
(
lpszCookieName
),
debugstr_a
(
lpszCookieData
),
dwFlags
,
dwReserved
);
return
TRUE
;
}
DWORD
WINAPI
InternetSetCookieExW
(
LPCWSTR
lpszURL
,
LPCWSTR
lpszCookieName
,
LPCWSTR
lpszCookieData
,
DWORD
dwFlags
,
DWORD_PTR
dwReserved
)
{
FIXME
(
"(%s, %s, %s, 0x%08lx, 0x%08lx) stub
\n
"
,
debugstr_w
(
lpszURL
),
debugstr_w
(
lpszCookieName
),
debugstr_w
(
lpszCookieData
),
dwFlags
,
dwReserved
);
return
TRUE
;
}
BOOL
WINAPI
ResumeSuspendedDownload
(
HINTERNET
hInternet
,
DWORD
dwError
)
{
FIXME
(
"(%p, 0x%08lx) stub
\n
"
,
hInternet
,
dwError
);
...
...
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