Removed the no longer user APC_ASYNC kind of APC.
authorEric Pouech <pouech-eric@wanadoo.fr>
Mon, 18 Apr 2005 15:38:44 +0000 (15:38 +0000)
committerAlexandre Julliard <julliard@winehq.org>
Mon, 18 Apr 2005 15:38:44 +0000 (15:38 +0000)
dlls/ntdll/sync.c
include/wine/server_protocol.h
server/protocol.def

index 28a5addaf93f238aee8e0db5b14dffce7b7b374f..2e97b35912d1e31debf1df6013f66b3e2ec4717e 100644 (file)
@@ -674,9 +674,6 @@ static void call_apcs( BOOL alertable )
         {
         case APC_NONE:
             return;  /* no more APCs */
-        case APC_ASYNC:
-            proc( arg1, arg2 );
-            break;
         case APC_USER:
             proc( arg1, arg2, arg3 );
             break;
index 6eff623b74f358484772b0776135c264148ea5d5..24b935ef8c03f293e6026d24c894d9a040fa3c39 100644 (file)
@@ -512,7 +512,7 @@ struct get_apc_reply
     void*        arg2;
     void*        arg3;
 };
-enum apc_type { APC_NONE, APC_USER, APC_TIMER, APC_ASYNC, APC_ASYNC_IO };
+enum apc_type { APC_NONE, APC_USER, APC_TIMER, APC_ASYNC_IO };
 
 
 
@@ -3882,6 +3882,6 @@ union generic_reply
     struct set_mailslot_info_reply set_mailslot_info_reply;
 };
 
-#define SERVER_PROTOCOL_VERSION 167
+#define SERVER_PROTOCOL_VERSION 168
 
 #endif /* __WINE_WINE_SERVER_PROTOCOL_H */
index a95768667eb56a101546ffe24f575fb857a1c738..2f272c6ed99e329a8ffae17673b7a69fea530395 100644 (file)
@@ -416,7 +416,7 @@ typedef struct
     void*        arg2;
     void*        arg3;
 @END
-enum apc_type { APC_NONE, APC_USER, APC_TIMER, APC_ASYNC, APC_ASYNC_IO };
+enum apc_type { APC_NONE, APC_USER, APC_TIMER, APC_ASYNC_IO };
 
 
 /* Close a handle for the current process */