You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
484 B
35 lines
484 B
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
pipe.h
|
|
|
|
Abstract:
|
|
|
|
Header for pipe interface for rudimentary quorum access server
|
|
|
|
Author:
|
|
|
|
Gor Nishanov (gorn) 20-Sep-2001
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _PIPE_H_INCLUDED
|
|
# define _PIPE_H_INCLUDED
|
|
|
|
DWORD
|
|
PipeInit(PVOID resHdl, PVOID fsHdl, PVOID *Hdl);
|
|
|
|
void
|
|
PipeExit(PVOID Hdl);
|
|
|
|
DWORD PipeOnline(PVOID Hdl, PVOID VolHdl);
|
|
DWORD PipeOffline(PVOID Hdl);
|
|
|
|
#endif
|
|
|
|
|