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
c911eff7
Commit
c911eff7
authored
Jun 18, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Make wine_server_call() cdecl.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
61680b44
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
server.c
dlls/ntdll/server.c
+1
-1
server.h
include/wine/server.h
+1
-1
No files found.
dlls/ntdll/server.c
View file @
c911eff7
...
...
@@ -312,7 +312,7 @@ unsigned int server_call_unlocked( void *req_ptr )
*| }
*| SERVER_END_REQ;
*/
unsigned
int
wine_server_call
(
void
*
req_ptr
)
unsigned
int
CDECL
wine_server_call
(
void
*
req_ptr
)
{
sigset_t
old_set
;
unsigned
int
ret
;
...
...
include/wine/server.h
View file @
c911eff7
...
...
@@ -49,7 +49,7 @@ struct __server_request_info
struct
__server_iovec
data
[
__SERVER_MAX_DATA
];
/* request variable size data */
};
extern
unsigned
int
wine_server_call
(
void
*
req_ptr
);
extern
unsigned
int
CDECL
wine_server_call
(
void
*
req_ptr
);
extern
void
CDECL
wine_server_send_fd
(
int
fd
);
extern
int
CDECL
wine_server_fd_to_handle
(
int
fd
,
unsigned
int
access
,
unsigned
int
attributes
,
HANDLE
*
handle
);
extern
int
CDECL
wine_server_handle_to_fd
(
HANDLE
handle
,
unsigned
int
access
,
int
*
unix_fd
,
unsigned
int
*
options
);
...
...
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