winhttp: Get rid of no longer needed netconn_init.
Spotted by Hans. Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4620bcf806
commit
c2f464decb
|
@ -289,13 +289,6 @@ static BOOL ensure_cred_handle(void)
|
|||
return ret;
|
||||
}
|
||||
|
||||
BOOL netconn_init( netconn_t *conn )
|
||||
{
|
||||
memset(conn, 0, sizeof(*conn));
|
||||
conn->socket = -1;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void netconn_unload( void )
|
||||
{
|
||||
if(cred_handle_initialized)
|
||||
|
|
|
@ -284,7 +284,6 @@ void close_connection( request_t * ) DECLSPEC_HIDDEN;
|
|||
BOOL netconn_close( netconn_t * ) DECLSPEC_HIDDEN;
|
||||
BOOL netconn_connect( netconn_t *, const struct sockaddr *, unsigned int, int ) DECLSPEC_HIDDEN;
|
||||
netconn_t *netconn_create( int, int, int ) DECLSPEC_HIDDEN;
|
||||
BOOL netconn_init( netconn_t * ) DECLSPEC_HIDDEN;
|
||||
void netconn_unload( void ) DECLSPEC_HIDDEN;
|
||||
ULONG netconn_query_data_available( netconn_t * ) DECLSPEC_HIDDEN;
|
||||
BOOL netconn_recv( netconn_t *, void *, size_t, int, int * ) DECLSPEC_HIDDEN;
|
||||
|
|
Loading…
Reference in New Issue