1998-12-30 13:08:20 +01:00
|
|
|
/*
|
|
|
|
* Win32 pipes
|
|
|
|
*
|
|
|
|
* Copyright 1998 Alexandre Julliard
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include "winerror.h"
|
1999-02-28 14:27:56 +01:00
|
|
|
#include "winbase.h"
|
1998-12-30 13:08:20 +01:00
|
|
|
#include "server.h"
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreatePipe (KERNEL32.170)
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
BOOL WINAPI CreatePipe( PHANDLE hReadPipe, PHANDLE hWritePipe,
|
1998-12-30 13:08:20 +01:00
|
|
|
LPSECURITY_ATTRIBUTES sa, DWORD size )
|
|
|
|
{
|
2000-08-30 02:00:48 +02:00
|
|
|
BOOL ret;
|
|
|
|
SERVER_START_REQ
|
|
|
|
{
|
|
|
|
struct create_pipe_request *req = server_alloc_req( sizeof(*req), 0 );
|
1998-12-30 13:08:20 +01:00
|
|
|
|
2000-08-30 02:00:48 +02:00
|
|
|
req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
|
|
|
|
if ((ret = !server_call( REQ_CREATE_PIPE )))
|
|
|
|
{
|
|
|
|
*hReadPipe = req->handle_read;
|
|
|
|
*hWritePipe = req->handle_write;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
return ret;
|
1998-12-30 13:08:20 +01:00
|
|
|
}
|