wine_server_call (NTDLL.@)
unsigned int wine_server_call ( void* req_ptr )
Perform a server call.
req_ptr | [In/Out] | Function dependent data. |
Depends on server function being called, but usually an NTSTATUS code.
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;
Not defined in a Wine header. The function is either undocumented, or missing from Wine.
Implemented in "dlls/ntdll/server.c". source.winehq.org/source/dlls/ntdll/server.c
Debug channel "server".
Copyright © 2008 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Jan 2008.