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
cd0317f2
Commit
cd0317f2
authored
Feb 04, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Remove unused function.
parent
59a50245
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
25 deletions
+0
-25
inetcomm_private.h
dlls/inetcomm/inetcomm_private.h
+0
-2
internettransport.c
dlls/inetcomm/internettransport.c
+0
-23
No files found.
dlls/inetcomm/inetcomm_private.h
View file @
cd0317f2
...
...
@@ -61,8 +61,6 @@ HRESULT InternetTransport_DropConnection(InternetTransport *This);
HRESULT
InternetTransport_GetStatus
(
InternetTransport
*
This
,
IXPSTATUS
*
pCurrentStatus
);
HRESULT
InternetTransport_ChangeStatus
(
InternetTransport
*
This
,
IXPSTATUS
Status
);
HRESULT
InternetTransport_Read
(
InternetTransport
*
This
,
int
cbBuffer
,
INETXPORT_COMPLETION_FUNCTION
fnCompletion
);
HRESULT
InternetTransport_ReadLine
(
InternetTransport
*
This
,
INETXPORT_COMPLETION_FUNCTION
fnCompletion
);
HRESULT
InternetTransport_Write
(
InternetTransport
*
This
,
const
char
*
pvData
,
...
...
dlls/inetcomm/internettransport.c
View file @
cd0317f2
...
...
@@ -204,29 +204,6 @@ HRESULT InternetTransport_ChangeStatus(InternetTransport *This, IXPSTATUS Status
return
S_OK
;
}
HRESULT
InternetTransport_Read
(
InternetTransport
*
This
,
int
cbBuffer
,
INETXPORT_COMPLETION_FUNCTION
fnCompletion
)
{
if
(
This
->
Status
==
IXP_DISCONNECTED
)
return
IXP_E_NOT_CONNECTED
;
if
(
This
->
fnCompletion
)
return
IXP_E_BUSY
;
This
->
fnCompletion
=
fnCompletion
;
This
->
cbBuffer
=
cbBuffer
;
This
->
pBuffer
=
HeapAlloc
(
GetProcessHeap
(),
0
,
This
->
cbBuffer
);
This
->
iCurrentBufferOffset
=
0
;
if
(
WSAAsyncSelect
(
This
->
Socket
,
This
->
hwnd
,
IX_READ
,
FD_READ
)
==
SOCKET_ERROR
)
{
ERR
(
"WSAAsyncSelect failed with error %d
\n
"
,
WSAGetLastError
());
/* FIXME: handle error */
}
return
S_OK
;
}
HRESULT
InternetTransport_ReadLine
(
InternetTransport
*
This
,
INETXPORT_COMPLETION_FUNCTION
fnCompletion
)
{
...
...
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