[PATCH 5/5] include: Define NTSTATUS fields using int in afd.h.

Zebediah Figura zfigura at codeweavers.com
Thu Feb 10 19:36:30 CST 2022


Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
 include/wine/afd.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/wine/afd.h b/include/wine/afd.h
index efd5787e90a..993730cacdb 100644
--- a/include/wine/afd.h
+++ b/include/wine/afd.h
@@ -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 );
 
-- 
2.34.1




More information about the wine-devel mailing list