Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0a9f98b9
Commit
0a9f98b9
authored
Apr 18, 2005
by
Eric Pouech
Committed by
Alexandre Julliard
Apr 18, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed the no longer user APC_ASYNC kind of APC.
parent
e55032f1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
sync.c
dlls/ntdll/sync.c
+0
-3
server_protocol.h
include/wine/server_protocol.h
+2
-2
protocol.def
server/protocol.def
+1
-1
No files found.
dlls/ntdll/sync.c
View file @
0a9f98b9
...
...
@@ -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
;
...
...
include/wine/server_protocol.h
View file @
0a9f98b9
...
...
@@ -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 16
7
#define SERVER_PROTOCOL_VERSION 16
8
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
server/protocol.def
View file @
0a9f98b9
...
...
@@ -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 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment