blob: 1029377c8f68467133e399f27de495543d8e8ab3 (
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
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
driver.h
Abstract:
This module contains the function definitions for
the WDF driver.
Environment:
kernel-mode only
Revision History:
--*/
#ifndef _DRIVER_H_
#define _DRIVER_H_
extern "C"
NTSTATUS
DriverEntry(
_In_ PDRIVER_OBJECT pDriverObject,
_In_ PUNICODE_STRING pRegistryPath
);
EVT_WDF_DRIVER_DEVICE_ADD OnDeviceAdd;
EVT_WDF_OBJECT_CONTEXT_CLEANUP OnDriverCleanup;
#endif
|