Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
af04ebe4
Commit
af04ebe4
authored
Nov 21, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added server_call_noerr function that avoids touching the last error.
parent
d92870fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
+14
-10
server.h
include/server.h
+11
-3
client.c
scheduler/client.c
+3
-7
No files found.
include/server.h
View file @
af04ebe4
...
...
@@ -922,6 +922,10 @@ enum request
/* client communication functions */
extern
unsigned
int
server_call_noerr
(
enum
request
req
);
extern
unsigned
int
server_call_fd
(
enum
request
req
,
int
fd_out
,
int
*
fd_in
);
extern
void
server_protocol_error
(
const
char
*
err
,
...
);
/* get a pointer to the request buffer */
static
inline
void
*
WINE_UNUSED
get_req_buffer
(
void
)
{
...
...
@@ -934,9 +938,13 @@ static inline int WINE_UNUSED server_remaining( const void *ptr )
return
(
char
*
)
NtCurrentTeb
()
->
buffer
+
NtCurrentTeb
()
->
buffer_size
-
(
char
*
)
ptr
;
}
extern
unsigned
int
server_call
(
enum
request
req
);
extern
unsigned
int
server_call_fd
(
enum
request
req
,
int
fd_out
,
int
*
fd_in
);
extern
void
server_protocol_error
(
const
char
*
err
,
...
);
/* do a server call and set the last error code */
static
inline
int
server_call
(
enum
request
req
)
{
unsigned
int
res
=
server_call_noerr
(
req
);
if
(
res
)
SetLastError
(
res
);
return
res
;
}
extern
int
CLIENT_InitServer
(
void
);
extern
int
CLIENT_SetDebug
(
int
level
);
...
...
scheduler/client.c
View file @
af04ebe4
...
...
@@ -225,18 +225,14 @@ static unsigned int wait_reply_fd( int *fd )
/***********************************************************************
* server_call
* server_call
_noerr
*
* Perform a server call.
*/
unsigned
int
server_call
(
enum
request
req
)
unsigned
int
server_call
_noerr
(
enum
request
req
)
{
unsigned
int
res
;
send_request
(
req
);
res
=
wait_reply
();
if
(
res
)
SetLastError
(
res
);
return
res
;
/* error code */
return
wait_reply
();
}
...
...
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