49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
/* NFSv4.1 client for Windows
|
|
* Copyright © 2012 The Regents of the University of Michigan
|
|
*
|
|
* Olga Kornievskaia <aglo@umich.edu>
|
|
* Casey Bodley <cbodley@umich.edu>
|
|
*
|
|
* This library is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 of the License, or (at
|
|
* your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful, but
|
|
* without any warranty; without even the implied warranty of merchantability
|
|
* or fitness for a particular purpose. See the GNU Lesser General Public
|
|
* License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this library; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
*/
|
|
|
|
#ifndef NFS41_WMLKM_H
|
|
#define NFS41_WMLKM_H 1
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
NTSTATUS
|
|
WmlTinySystemControl(
|
|
__inout PVOID WmiLibInfo,
|
|
__in PVOID DeviceObject,
|
|
__in PVOID Irp
|
|
);
|
|
|
|
ULONG
|
|
WmlTrace(
|
|
__in ULONG Type,
|
|
__in LPVOID TraceGuid,
|
|
__in ULONG64 LoggerHandle,
|
|
... // Pairs: Address, Length
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif // NFS41_WMLKM_H
|
|
|