reactos/drivers/wmi/wmilib.c
Cameron Gutman 29fa274d6d - Create another branch for networking fixes
- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers)
 - If someone wants to delete aicom-network-fixes, they are welcome to
 - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea

svn path=/branches/aicom-network-branch/; revision=44353
2009-12-02 03:23:19 +00:00

60 lines
1.5 KiB
C

/*
* PROJECT: ReactOS WMI driver
* COPYRIGHT: GPL - See COPYING in the top level directory
* FILE: drivers/wmi/wmilib.c
* PURPOSE: Windows Management Intstrumentation
* PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
*
*/
/* INCLUDES *****************************************************************/
#include <stdio.h>
#include <ntddk.h>
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
NTSTATUS
NTAPI
WmiCompleteRequest(IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN NTSTATUS Status,
IN ULONG BufferUsed,
IN CCHAR PriorityBoost)
{
DPRINT1("WmiLib: WmiCompleteRequest() unimplemented\n");
return STATUS_SUCCESS;
}
NTSTATUS
NTAPI
WmiFireEvent(IN PDEVICE_OBJECT DeviceObject,
IN LPGUID Guid,
IN ULONG InstanceIndex,
IN ULONG EventDataSize,
IN PVOID EventData)
{
DPRINT1("WmiLib: WmiFireEvent() unimplemented\n");
return STATUS_SUCCESS;
}
NTSTATUS
NTAPI
WmiSystemControl(IN PWMILIB_CONTEXT WmiLibInfo,
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
OUT PSYSCTL_IRP_DISPOSITION IrpDisposition)
{
DPRINT1("WmiLib: WmiSystemControl() unimplemented\n");
/* Return info that Irp is not completed */
if (IrpDisposition)
*IrpDisposition = IrpNotCompleted;
return STATUS_SUCCESS;
}