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"
|
2001-07-19 02:39:09 +02:00
|
|
|
#include "wine/server.h"
|
1998-12-30 13:08:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* CreatePipe (KERNEL32.@)
|
1998-12-30 13:08:20 +01:00
|
|
|
*/
|
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;
|
2001-02-27 03:09:16 +01:00
|
|
|
SERVER_START_REQ( create_pipe )
|
2000-08-30 02:00:48 +02:00
|
|
|
{
|
|
|
|
req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
|
2001-11-30 19:46:42 +01:00
|
|
|
if ((ret = !wine_server_call_err( req )))
|
2000-08-30 02:00:48 +02:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
*hReadPipe = reply->handle_read;
|
|
|
|
*hWritePipe = reply->handle_write;
|
2000-08-30 02:00:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
return ret;
|
1998-12-30 13:08:20 +01:00
|
|
|
}
|