Removed the no longer user APC_ASYNC kind of APC.

This commit is contained in:
Eric Pouech 2005-04-18 15:38:44 +00:00 committed by Alexandre Julliard
parent e55032f1b0
commit 0a9f98b9bd
3 changed files with 3 additions and 6 deletions

View 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;

View 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 */

View 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 */