2012-03-19 12:24:43 -04:00
|
|
|
|
/* NFSv4.1 client for Windows
|
|
|
|
|
|
* Copyright <EFBFBD> 2012 The Regents of the University of Michigan
|
|
|
|
|
|
*
|
2011-08-12 13:20:12 -04:00
|
|
|
|
* Olga Kornievskaia <aglo@umich.edu>
|
|
|
|
|
|
* Casey Bodley <cbodley@umich.edu>
|
2010-10-11 14:59:26 -04:00
|
|
|
|
*
|
2012-03-19 12:24:43 -04:00
|
|
|
|
* 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.
|
2010-10-11 14:59:26 -04:00
|
|
|
|
*
|
2012-03-19 12:24:43 -04:00
|
|
|
|
* 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
|
2010-10-11 14:59:26 -04:00
|
|
|
|
*
|
|
|
|
|
|
* Comments: RDBSS depends on wmlkm files. See comments in nulmrx/wmlkm
|
|
|
|
|
|
*/
|
2012-03-19 12:24:43 -04:00
|
|
|
|
|
2010-10-11 14:59:26 -04:00
|
|
|
|
#pragma hdrstop
|
|
|
|
|
|
|
|
|
|
|
|
#include <ntddk.h>
|
|
|
|
|
|
#include <ntdef.h>
|
|
|
|
|
|
#define LPVOID PVOID64 // BUG - need to find include for this
|
|
|
|
|
|
#include "wmlkm.h"
|
|
|
|
|
|
|
|
|
|
|
|
NTSTATUS
|
|
|
|
|
|
WmlTinySystemControl(
|
|
|
|
|
|
__inout PVOID WmiLibInfo,
|
|
|
|
|
|
__in PVOID DeviceObject,
|
|
|
|
|
|
__in PVOID Irp
|
|
|
|
|
|
)
|
|
|
|
|
|
{
|
|
|
|
|
|
return(STATUS_WMI_GUID_NOT_FOUND);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ULONG
|
|
|
|
|
|
WmlTrace(
|
|
|
|
|
|
__in ULONG Type,
|
|
|
|
|
|
__in LPVOID TraceGuid,
|
|
|
|
|
|
__in ULONG64 LoggerHandle,
|
|
|
|
|
|
... // Pairs: Address, Length
|
|
|
|
|
|
)
|
|
|
|
|
|
{
|
|
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
|
|
}
|