1998-12-30 12:08:20 +00:00
|
|
|
/*
|
|
|
|
* Win32 pipes
|
|
|
|
*
|
|
|
|
* Copyright 1998 Alexandre Julliard
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include "winerror.h"
|
1999-02-28 13:27:56 +00:00
|
|
|
#include "winbase.h"
|
2001-07-19 00:39:09 +00:00
|
|
|
#include "wine/server.h"
|
1998-12-30 12:08:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-13 20:13:18 +00:00
|
|
|
* CreatePipe (KERNEL32.@)
|
1998-12-30 12:08:20 +00:00
|
|
|
*/
|
1999-02-26 11:11:13 +00:00
|
|
|
BOOL WINAPI CreatePipe( PHANDLE hReadPipe, PHANDLE hWritePipe,
|
1998-12-30 12:08:20 +00:00
|
|
|
LPSECURITY_ATTRIBUTES sa, DWORD size )
|
|
|
|
{
|
2000-08-30 00:00:48 +00:00
|
|
|
BOOL ret;
|
2001-02-27 02:09:16 +00:00
|
|
|
SERVER_START_REQ( create_pipe )
|
2000-08-30 00:00:48 +00:00
|
|
|
{
|
|
|
|
req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
|
2001-02-27 02:09:16 +00:00
|
|
|
if ((ret = !SERVER_CALL_ERR()))
|
2000-08-30 00:00:48 +00:00
|
|
|
{
|
|
|
|
*hReadPipe = req->handle_read;
|
|
|
|
*hWritePipe = req->handle_write;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
return ret;
|
1998-12-30 12:08:20 +00:00
|
|
|
}
|