mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
Removed the no longer user APC_ASYNC kind of APC.
This commit is contained in:
parent
e55032f1b0
commit
0a9f98b9bd
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user