netio.sys: Remove WINAPI on static functions where not needed.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2020-06-29 17:51:03 +02:00 committed by Alexandre Julliard
parent 1aa64a30be
commit f6d52e28e2
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ static void WINAPI send_receive_callback(TP_CALLBACK_INSTANCE *instance, void *s
unlock_socket(socket);
}
static NTSTATUS WINAPI do_send_receive(WSK_SOCKET *socket, WSK_BUF *wsk_buf, ULONG flags, IRP *irp, BOOL is_send)
static NTSTATUS do_send_receive(WSK_SOCKET *socket, WSK_BUF *wsk_buf, ULONG flags, IRP *irp, BOOL is_send)
{
struct wsk_socket_internal *s = wsk_socket_internal_from_wsk_socket(socket);
struct wsk_pending_io *io;