Leaked source code of windows server 2003
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

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. pipe.h
  5. Abstract:
  6. Header for pipe interface for rudimentary quorum access server
  7. Author:
  8. Gor Nishanov (gorn) 20-Sep-2001
  9. Revision History:
  10. --*/
  11. #ifndef _PIPE_H_INCLUDED
  12. # define _PIPE_H_INCLUDED
  13. DWORD
  14. PipeInit(PVOID resHdl, PVOID fsHdl, PVOID *Hdl);
  15. void
  16. PipeExit(PVOID Hdl);
  17. DWORD PipeOnline(PVOID Hdl, PVOID VolHdl);
  18. DWORD PipeOffline(PVOID Hdl);
  19. #endif