Commit 164539e8 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

include: Define NTSTATUS fields using int in afd.h.

parent 9856049a
......@@ -126,7 +126,7 @@ struct afd_poll_params
{
SOCKET socket;
int flags;
NTSTATUS status;
int status;
} sockets[1];
};
......@@ -140,7 +140,7 @@ struct afd_poll_params_64
{
ULONGLONG socket;
int flags;
NTSTATUS status;
int status;
} sockets[1];
};
......@@ -154,7 +154,7 @@ struct afd_poll_params_32
{
ULONG socket;
int flags;
NTSTATUS status;
int status;
} sockets[1];
};
#include <poppack.h>
......@@ -180,7 +180,7 @@ struct afd_event_select_params_32
struct afd_get_events_params
{
int flags;
NTSTATUS status[13];
int status[13];
};
C_ASSERT( sizeof(struct afd_get_events_params) == 56 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment