blob: 9da989c14353b82b7db5cbad639fdd0b6572b0ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
PURPOSE.
Module Name:
FireFly.h
Abstract:
This is the header for the Windows Driver Framework version
of the firefly filter driver.
Environment:
Kernel mode
--*/
#include <ntddk.h>
#include <wdf.h>
#define NTSTRSAFE_LIB
#include <ntstrsafe.h>
#include <initguid.h>
#include <wdmguid.h>
//
// Our drivers generated include from firefly.mof
// See makefile.inc for wmi commands
//
#include "fireflymof.h"
// Our drivers modules includes
#include "device.h"
#include "wmi.h"
#include "vfeature.h"
#include "magic.h"
//
// WDFDRIVER Object Events
//
DRIVER_INITIALIZE DriverEntry;
EVT_WDF_DRIVER_DEVICE_ADD FireFlyEvtDeviceAdd;
|