Commit 0a9f98b9 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Removed the no longer user APC_ASYNC kind of APC.

parent e55032f1
......@@ -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;
......
......@@ -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 */
......@@ -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 */
......
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