winhttp: Get rid of read_data_t.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2018-11-15 12:38:48 +01:00 committed by Alexandre Julliard
parent 41c72bff6f
commit 6fb0c79022
2 changed files with 7 additions and 7 deletions

View File

@ -2958,7 +2958,7 @@ BOOL WINAPI WinHttpQueryDataAvailable( HINTERNET hrequest, LPDWORD available )
static void task_read_data( struct task_header *task ) static void task_read_data( struct task_header *task )
{ {
read_data_t *r = (read_data_t *)task; struct read_data *r = (struct read_data *)task;
read_data( r->hdr.request, r->buffer, r->to_read, r->read, TRUE ); read_data( r->hdr.request, r->buffer, r->to_read, r->read, TRUE );
} }
@ -2986,9 +2986,9 @@ BOOL WINAPI WinHttpReadData( HINTERNET hrequest, LPVOID buffer, DWORD to_read, L
if (request->connect->hdr.flags & WINHTTP_FLAG_ASYNC) if (request->connect->hdr.flags & WINHTTP_FLAG_ASYNC)
{ {
read_data_t *r; struct read_data *r;
if (!(r = heap_alloc( sizeof(read_data_t) ))) return FALSE; if (!(r = heap_alloc( sizeof(struct read_data) ))) return FALSE;
r->hdr.request = request; r->hdr.request = request;
r->hdr.proc = task_read_data; r->hdr.proc = task_read_data;
r->buffer = buffer; r->buffer = buffer;

View File

@ -243,13 +243,13 @@ struct query_data
DWORD *available; DWORD *available;
}; };
typedef struct struct read_data
{ {
struct task_header hdr; struct task_header hdr;
LPVOID buffer; void *buffer;
DWORD to_read; DWORD to_read;
LPDWORD read; DWORD *read;
} read_data_t; };
typedef struct typedef struct
{ {