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
98343e32
Commit
98343e32
authored
Sep 10, 2001
by
Marcus Meissner
Committed by
Alexandre Julliard
Sep 10, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More debug output for InternetGetCookie, added stub for InternetSetCookie.
parent
4d2f173c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
5 deletions
+22
-5
internet.c
dlls/wininet/internet.c
+20
-3
wininet.spec
dlls/wininet/wininet.spec
+2
-2
No files found.
dlls/wininet/internet.c
View file @
98343e32
...
...
@@ -932,10 +932,27 @@ BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
BOOL
WINAPI
InternetGetCookieA
(
LPCSTR
lpszUrl
,
LPCSTR
lpszCookieName
,
LPSTR
lpCookieData
,
LPDWORD
lpdwSize
)
{
FIXME
(
"Stub
\n
"
);
return
FALSE
;
FIXME
(
"(%s,%s,%p), stub!
\n
"
,
debugstr_a
(
lpszUrl
),
debugstr_a
(
lpszCookieName
),
lpCookieData
);
return
FALSE
;
}
/***********************************************************************
* InternetSetCookieA (WININET.@)
*
* Sets cookie for the specified url
*
* RETURNS
* TRUE on success
* FALSE on failure
*
*/
BOOL
WINAPI
InternetSetCookieA
(
LPCSTR
lpszUrl
,
LPCSTR
lpszCookieName
,
LPCSTR
lpCookieData
)
{
FIXME
(
"(%s,%s,%s), stub!
\n
"
,
debugstr_a
(
lpszUrl
),
debugstr_a
(
lpszCookieName
),
debugstr_a
(
lpCookieData
));
return
FALSE
;
}
/***********************************************************************
* GetInternetScheme (internal)
...
...
dlls/wininet/wininet.spec
View file @
98343e32
...
...
@@ -114,7 +114,7 @@ debug_channels (wininet)
@ stub InternetFindNextFileW
@ stub InternetGetCertByURL
@ stdcall InternetGetConnectedState(ptr long) InternetGetConnectedState
@ stdcall InternetGetCookieA(str str
s
tr long) InternetGetCookieA
@ stdcall InternetGetCookieA(str str
p
tr long) InternetGetCookieA
@ stub InternetGetCookieW
@ stdcall InternetGetLastResponseInfoA(ptr str ptr) InternetGetLastResponseInfoA
@ stub InternetGetLastResponseInfoW
...
...
@@ -133,7 +133,7 @@ debug_channels (wininet)
@ stub InternetReadFileExA
@ stub InternetReadFileExW
@ stub InternetServerPushParse
@ st
ub
InternetSetCookieA
@ st
dcall InternetSetCookieA(str str str)
InternetSetCookieA
@ stub InternetSetCookieW
@ stub InternetSetDialState
@ stub InternetSetFilePointer
...
...
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