include: Fix prototype mismatch for server functions.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2022-01-24 21:44:36 +01:00
parent 4c2b6af10f
commit 2aae3489be
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ struct __server_request_info
};
extern unsigned int CDECL wine_server_call( void *req_ptr );
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 );
extern NTSTATUS CDECL wine_server_fd_to_handle( int fd, unsigned int access, unsigned int attributes, HANDLE *handle );
extern NTSTATUS CDECL wine_server_handle_to_fd( HANDLE handle, unsigned int access, int *unix_fd, unsigned int *options );
/* do a server call and set the last error code */
static inline unsigned int wine_server_call_err( void *req_ptr )