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.
|
|
/*++
Copyright (c) 2001 Microsoft Corporation
Module Name:
DfsUmrCtrl.h
Abstract:
Notes:
Author:
Rohan Phillips [Rohanp] 18-Jan-2001
--*/ #ifndef _DFSUMRCTRL_H_
#define _DFSUMRCTRL_H_
LONG AddUmrRef(void);
LONG ReleaseUmrRef(void);
BOOL IsUmrEnabled(void);
BOOLEAN
LockUmrShared(void);
void UnLockUmrShared(void);
NTSTATUS DfsInitializeUmrResources(void);
void DfsDeInitializeUmrResources(void);
NTSTATUS DfsStartupUMRx(void);
NTSTATUS DfsTeardownUMRx(void);
NTSTATUS DfsProcessUMRxPacket( IN PVOID InputBuffer, IN ULONG InputBufferLength, OUT PVOID OutputBuffer, IN ULONG OutputBufferLength, IN OUT PIO_STATUS_BLOCK pIoStatusBlock);
PUMRX_ENGINE GetUMRxEngineFromRxContext(void);
NTSTATUS DfsWaitForPendingClients(void);
#endif
|