wine_server_call(3w)
NAME
wine_server_call (NTDLL.@)
SYNOPSIS
unsigned int wine_server_call ( void* req_ptr )
DESCRIPTION
Perform a server call.
PARAMS
req_ptr [In/Out] Function dependent data.
RETURNS
Depends on server function being called, but usually an NTSTATUS code.
NOTES
- Use the SERVER_START_REQ and SERVER_END_REQ to help you fill out the
server request structure for the particular call. E.g:
- SERVER_START_REQ( event_op )
{req->handle = handle;
req->op = SET_EVENT;
ret = wine_server_call( req ); - }
SERVER_END_REQ;
IMPLEMENTATION
Not defined in a Wine header. The function is either undocumented, or
missing from Wine.
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/ntdll/server.c".
- Debug channel "server".