Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
deb49f6f
Commit
deb49f6f
authored
Jul 27, 2008
by
Zac Brown
Committed by
Alexandre Julliard
Jul 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Add stub implementation for WinHttpWriteData.
parent
1cdb06c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
main.c
dlls/winhttp/main.c
+12
-0
winhttp.spec
dlls/winhttp/winhttp.spec
+1
-1
No files found.
dlls/winhttp/main.c
View file @
deb49f6f
...
...
@@ -247,3 +247,15 @@ BOOL WINAPI WinHttpCloseHandle (HINTERNET hInternet)
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
FALSE
;
}
/***********************************************************************
* WinHttpWriteData (winhttp.@)
*/
BOOL
WINAPI
WinHttpWriteData
(
HINTERNET
hRequest
,
LPCVOID
lpBuffer
,
DWORD
dwNumberOfBytesToWrite
,
LPDWORD
lpdwNumberOfBytesWritten
)
{
FIXME
(
"(%p, %d, %p): stub
\n
"
,
lpBuffer
,
dwNumberOfBytesToWrite
,
lpdwNumberOfBytesWritten
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
FALSE
;
}
dlls/winhttp/winhttp.spec
View file @
deb49f6f
...
...
@@ -28,4 +28,4 @@
@ stub WinHttpSetTimeouts
@ stub WinHttpTimeFromSystemTime
@ stub WinHttpTimeToSystemTime
@ st
ub WinHttpWriteData
@ st
dcall WinHttpWriteData(ptr ptr long ptr)
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